-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathShellOutTests+Linux.swift
More file actions
29 lines (27 loc) · 1.12 KB
/
ShellOutTests+Linux.swift
File metadata and controls
29 lines (27 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* ShellOut
* Copyright (c) John Sundell 2017
* Licensed under the MIT license. See LICENSE file.
*/
import XCTest
@testable import ShellOut
#if os(Linux)
extension ShellOutTests {
static var allTests = [
("testWithoutArguments", testWithoutArguments),
("testWithArguments", testWithArguments),
("testWithInlineArguments", testWithInlineArguments),
("testSingleCommandAtPath", testSingleCommandAtPath),
("testSingleCommandAtPathContainingSpace", testSingleCommandAtPathContainingSpace),
("testSingleCommandAtPathContainingTilde", testSingleCommandAtPathContainingTilde),
("testSeriesOfCommands", testSeriesOfCommands),
("testSeriesOfCommandsAtPath", testSeriesOfCommandsAtPath),
("testThrowingError", testThrowingError),
("testErrorDescription", testErrorDescription),
("testCapturingOutputWithHandle", testCapturingOutputWithHandle),
("testCapturingErrorWithHandle", testCapturingErrorWithHandle),
("testGitCommands", testGitCommands),
("testSwiftPackageManagerCommands", testSwiftPackageManagerCommands)
]
}
#endif