diff --git a/SwiftNeoVimTests/SwiftNeoVimTests.swift b/SwiftNeoVimTests/SwiftNeoVimTests.swift index d9caab04..79d5d89f 100644 --- a/SwiftNeoVimTests/SwiftNeoVimTests.swift +++ b/SwiftNeoVimTests/SwiftNeoVimTests.swift @@ -3,7 +3,6 @@ * See LICENSE */ -import XCTest import Quick import Nimble @testable import SwiftNeoVim diff --git a/VimRTests/VimRTests.swift b/VimRTests/VimRTests.swift index be90667b..eea4b8aa 100644 --- a/VimRTests/VimRTests.swift +++ b/VimRTests/VimRTests.swift @@ -3,31 +3,17 @@ * See LICENSE */ -import XCTest +import Quick +import Nimble @testable import VimR -class VimRTests: XCTestCase { - - override func setUp() { - super.setUp() - // Put setup code here. This method is called before the invocation of each test method in the class. +class ShellSpec: QuickSpec { + + override func spec() { + describe("Some class") { + it("does things") { + expect(true).to(be(true)) + } } - - override func tearDown() { - // Put teardown code here. This method is called after the invocation of each test method in the class. - super.tearDown() - } - - func testExample() { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct results. - } - - func testPerformanceExample() { - // This is an example of a performance test case. - self.measureBlock { - // Put the code you want to measure the time of here. - } - } - + } }