# HG changeset patch # User Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> # Date 1613823194 -3600 # Node ID 730a6f0959fe490a256ff467fb5e1a7be0791520 # Parent c3420ae11bda902d530773d527e8f5817678abc5 Delete tests diff -r c3420ae11bda -r 730a6f0959fe LazyBear.xcodeproj/project.pbxproj --- a/LazyBear.xcodeproj/project.pbxproj Sat Feb 20 13:10:57 2021 +0100 +++ b/LazyBear.xcodeproj/project.pbxproj Sat Feb 20 13:13:14 2021 +0100 @@ -29,7 +29,6 @@ 95ACB5AC25E03A7D00A3CCC8 /* themes.json in Resources */ = {isa = PBXBuildFile; fileRef = 95ACB5AB25E03A7D00A3CCC8 /* themes.json */; }; 95ACB5AF25E03AA100A3CCC8 /* ThemeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95ACB5AE25E03AA100A3CCC8 /* ThemeModel.swift */; }; 95B3E09F25E127D7007EFDE3 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B3E09E25E127D7007EFDE3 /* Request.swift */; }; - 95B3E0A225E1283F007EFDE3 /* TestSearchAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B3E0A125E1283F007EFDE3 /* TestSearchAPI.swift */; }; 95B3E0A625E1318D007EFDE3 /* SwiftlySearch in Frameworks */ = {isa = PBXBuildFile; productRef = 95B3E0A525E1318D007EFDE3 /* SwiftlySearch */; }; /* End PBXBuildFile section */ @@ -61,7 +60,6 @@ 95ACB5AB25E03A7D00A3CCC8 /* themes.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = themes.json; sourceTree = ""; }; 95ACB5AE25E03AA100A3CCC8 /* ThemeModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThemeModel.swift; sourceTree = ""; }; 95B3E09E25E127D7007EFDE3 /* Request.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Request.swift; sourceTree = ""; }; - 95B3E0A125E1283F007EFDE3 /* TestSearchAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestSearchAPI.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -178,7 +176,6 @@ 95B1874A25DDAC5B0068A364 /* Tests */ = { isa = PBXGroup; children = ( - 95B3E0A125E1283F007EFDE3 /* TestSearchAPI.swift */, ); path = Tests; sourceTree = ""; @@ -270,7 +267,6 @@ 95672B9125DDA54700DCBE4A /* ContentView.swift in Sources */, 958A733B25E00C3100FD7ECA /* Company+CoreDataProperties.swift in Sources */, 95ACB5AF25E03AA100A3CCC8 /* ThemeModel.swift in Sources */, - 95B3E0A225E1283F007EFDE3 /* TestSearchAPI.swift in Sources */, 95672B8F25DDA54700DCBE4A /* LazyBearApp.swift in Sources */, 958A734525E00D3D00FD7ECA /* Row.swift in Sources */, 95672B9B25DDA54800DCBE4A /* LazyBear.xcdatamodeld in Sources */, diff -r c3420ae11bda -r 730a6f0959fe LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate Binary file LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed diff -r c3420ae11bda -r 730a6f0959fe LazyBear.xcodeproj/xcshareddata/xcschemes/LazyBear.xcscheme --- a/LazyBear.xcodeproj/xcshareddata/xcschemes/LazyBear.xcscheme Sat Feb 20 13:10:57 2021 +0100 +++ b/LazyBear.xcodeproj/xcshareddata/xcschemes/LazyBear.xcscheme Sat Feb 20 13:13:14 2021 +0100 @@ -31,7 +31,7 @@ String { - let baseUrl = Bundle.main.infoDictionary?["IEX_URL"] as? String ?? "Empty url" - let apiKey = Bundle.main.infoDictionary?["IEX_API"] as? String ?? "Empty key" - let url = "\(baseUrl)/search/apple?token=\(apiKey)" - - return url - } -} - -struct TestSearchAPI_Previews: PreviewProvider { - static var previews: some View { - TestSearchAPI() - } -}