19 lines
359 B
Swift
19 lines
359 B
Swift
//
|
|
// String_Tests.swift
|
|
// SwiftShell
|
|
//
|
|
// Created by Kåre Morstøl on 04.11.14.
|
|
// Copyright (c) 2014 NotTooBad Software. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
import SwiftShell
|
|
|
|
class String_Tests: XCTestCase {
|
|
|
|
func testRunCommands () {
|
|
XCTAssertEqual("one two".run("wc","-w"), "2")
|
|
XCTAssertEqual("one".runAsync("cat").stdout.read(), "one")
|
|
}
|
|
}
|