1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-28 03:38:54 +03:00
vimr/SwiftNeoVimTests/SwiftNeoVimTests.swift

17 lines
257 B
Swift

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