a1ad3fb25c
Because it is the last version that does indentation and alignment correctly (tabs for indentation, spaces for alignment).
18 lines
372 B
Swift
Executable File
18 lines
372 B
Swift
Executable File
//
|
|
// String_Tests.swift
|
|
// SwiftShell
|
|
//
|
|
// Created by Kåre Morstøl on 04.11.14.
|
|
// Copyright (c) 2014 NotTooBad Software. All rights reserved.
|
|
//
|
|
|
|
import SwiftShell
|
|
import XCTest
|
|
|
|
public class String_Tests: XCTestCase {
|
|
func testRunCommands() {
|
|
XCTAssertEqual("one two".run("wc", "-w").stdout, "2")
|
|
XCTAssertEqual("one".runAsync("cat").stdout.read(), "one")
|
|
}
|
|
}
|