1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-29 00:34:26 +03:00
vimr/SwiftNeoVimTests/SwiftNeoVimTests.swift

17 lines
257 B
Swift
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
2016-07-03 20:12:25 +03:00
import XCTest
2016-07-03 20:12:25 +03:00
import Nimble
@testable import SwiftNeoVim
class GridTest: XCTestCase {
2016-07-03 20:12:25 +03:00
func testStub() {
let g = Grid()
expect(g.foreground).to(equal(qDefaultForeground))
2016-07-03 20:12:25 +03:00
}
}