Skip to content

Commit

Permalink
Merge pull request #13 from jeffctown/release/0.1.1
Browse files Browse the repository at this point in the history
Removing test that doesn’t play well with Carthage.
  • Loading branch information
jeffctown authored Feb 16, 2019
2 parents 291c0a4 + 7c4fa8b commit 7bc794a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import XCTest
class XcodeReferenceGatherStepTests: XCTestCase {
static let fileFolder = #file.split(separator: "/").dropLast(3).joined(separator: "/")
static let simpleProjectPathString = "/" + fileFolder.appending("/Fixtures/SimpleProject/")
static let invalidProjectPathString = "/" + fileFolder.appending("/Fixtures/InvalidProject/")

override func setUp() {
super.setUp()
Expand Down Expand Up @@ -51,16 +50,4 @@ class XcodeReferenceGatherStepTests: XCTestCase {
XCTAssert(true)
}
}

func testNoExceptionIsThrownForInvalidProject() {
let xcodeRefStep = XcodeReferenceGatherStep()
let path = XcodeReferenceGatherStepTests.invalidProjectPathString
let context = StepPipelineContext(verbose: true, extensions: [], path: path)
do {
try xcodeRefStep.run(context: context)
XCTAssert(true)
} catch {
XCTFail("Should not throw.")
}
}
}

0 comments on commit 7bc794a

Please sign in to comment.