-
-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixups for building and testing on linux/docker
- Loading branch information
1 parent
49bb0cd
commit a5c8cbe
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ import PathKit | |
import XCTest | ||
@testable import XcodeProj | ||
|
||
import Darwin | ||
|
||
final class PBXProjIntegrationTests: XCTestCase { | ||
func test_init_initializesTheProjCorrectly() { | ||
let data = try! Data(contentsOf: fixturePath().url) | ||
|
@@ -40,7 +38,7 @@ final class PBXProjIntegrationTests: XCTestCase { | |
// Create a commit | ||
try checkedOutput("git", ["init"]) | ||
try checkedOutput("git", ["add", "."]) | ||
try checkedOutput("git", ["commit", "-m", "test"]) | ||
try checkedOutput("git", ["-c", "[email protected]", "commit", "-m", "test"]) | ||
|
||
// Read/write the project | ||
let project = try XcodeProj(path: xcodeprojPath) | ||
|