Files
Kare Morstol a1ad3fb25c Reformat code using swiftformat 0.40.14
Because it is the last version that does indentation and alignment correctly (tabs for indentation, spaces for alignment).
2020-07-11 15:33:57 +02:00

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")
}
}