-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename package to ProcessRunner (#11)
Apple has a new System framework, so choosing a more appropriate name for this one.
- Loading branch information
Showing
13 changed files
with
30 additions
and
18 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import XCTest | ||
|
||
import SystemTests | ||
import ProcessRunnerTests | ||
|
||
var tests = [XCTestCaseEntry]() | ||
tests += SystemTests.__allTests() | ||
tests += ProcessRunnerTests.__allTests() | ||
|
||
XCTMain(tests) |
2 changes: 1 addition & 1 deletion
2
...s/SystemTests/CurrentDirectoryTests.swift → ...ssRunnerTests/CurrentDirectoryTests.swift
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import System | ||
import ProcessRunner | ||
|
||
final class CurrentDirectoryTests: XCTestCase { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
Tests/SystemTests/ProcessRunnerTests.swift → ...ocessRunnerTests/ProcessRunnerTests.swift
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import System | ||
import ProcessRunner | ||
|
||
final class ProcessRunnerTests: XCTestCase { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
Tests/SystemTests/StandardErrorTests.swift → ...ocessRunnerTests/StandardErrorTests.swift
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import System | ||
import ProcessRunner | ||
|
||
final class StandardErrorTests: XCTestCase { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
Tests/SystemTests/StandardOutputTests.swift → ...cessRunnerTests/StandardOutputTests.swift
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import System | ||
import ProcessRunner | ||
|
||
final class StandardOutputTests: XCTestCase { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
Tests/SystemTests/SuccessFailureTests.swift → ...cessRunnerTests/SuccessFailureTests.swift
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
import System | ||
import ProcessRunner | ||
|
||
final class SuccessFailureTests: XCTestCase { | ||
|
||
|
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