From 804e83170503952aeb77318055979153d929bca9 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Wed, 7 Oct 2015 09:49:23 -0400 Subject: [PATCH] :fire: SwiftTests. This was not really testing anything anyway. --- prototype/Doubt.xcodeproj/project.pbxproj | 4 ---- prototype/DoubtTests/SwiftTests.swift | 19 ------------------- 2 files changed, 23 deletions(-) delete mode 100644 prototype/DoubtTests/SwiftTests.swift diff --git a/prototype/Doubt.xcodeproj/project.pbxproj b/prototype/Doubt.xcodeproj/project.pbxproj index 3bbed8b98..3ffb51ab2 100644 --- a/prototype/Doubt.xcodeproj/project.pbxproj +++ b/prototype/Doubt.xcodeproj/project.pbxproj @@ -7,7 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - D40024EE1BAC819000A110B8 /* SwiftTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D40024ED1BAC819000A110B8 /* SwiftTests.swift */; }; D40B89C41BC319070078E098 /* Matrix.swift in Sources */ = {isa = PBXBuildFile; fileRef = D40B89C31BC319070078E098 /* Matrix.swift */; settings = {ASSET_TAGS = (); }; }; D40B89C81BC439000078E098 /* Assertions.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D40B89C71BC439000078E098 /* Assertions.framework */; }; D432D4711BA9AC0B00F3FABC /* SESTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D432D4701BA9AC0B00F3FABC /* SESTests.swift */; }; @@ -83,7 +82,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - D40024ED1BAC819000A110B8 /* SwiftTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftTests.swift; sourceTree = ""; }; D40B89C31BC319070078E098 /* Matrix.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Matrix.swift; sourceTree = ""; }; D40B89C71BC439000078E098 /* Assertions.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Assertions.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D432D4701BA9AC0B00F3FABC /* SESTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SESTests.swift; sourceTree = ""; }; @@ -236,7 +234,6 @@ isa = PBXGroup; children = ( D432D4701BA9AC0B00F3FABC /* SESTests.swift */, - D40024ED1BAC819000A110B8 /* SwiftTests.swift */, D4AAE5141B5AE22E004E581F /* Info.plist */, D40B89C71BC439000078E098 /* Assertions.framework */, ); @@ -417,7 +414,6 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D40024EE1BAC819000A110B8 /* SwiftTests.swift in Sources */, D432D4711BA9AC0B00F3FABC /* SESTests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/prototype/DoubtTests/SwiftTests.swift b/prototype/DoubtTests/SwiftTests.swift deleted file mode 100644 index 6c38fdd61..000000000 --- a/prototype/DoubtTests/SwiftTests.swift +++ /dev/null @@ -1,19 +0,0 @@ -final class SwiftTests: XCTestCase { - func testParsingAFile() { - let path = __FILE__ - guard let file = File(path: path) else { - XCTFail("Could not make a File from \(__FILE__)") - return - } - - let structure = Structure(file: file) - let dictionary = toAnyObject(structure.dictionary) - -// print(JSON(object: dictionary).map { Term(path: path, JSON: $0) }) - } -} - - -@testable import Doubt -import SourceKittenFramework -import XCTest