Files
SwiftShell/SwiftShellTests/Files_Tests.swift
T
Kare Morstol b33bfb9a5f Move "temporaryDirectory" to new file Files.swift and rename it "tempdirectory".
Because it could be useful in scripts too.
2014-11-25 20:38:32 +01:00

18 lines
325 B
Swift

//
// Files_Tests.swift
// SwiftShell
//
// Created by Kåre Morstøl on 25.11.14.
// Copyright (c) 2014 NotTooBad Software. All rights reserved.
//
import SwiftShell
import XCTest
class Files_Tests: XCTestCase {
func testTempDirectoryIsTheSameAfterRepeatedCalls () {
XCTAssertEqual(tempdirectory, tempdirectory)
}
}