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

22 lines
350 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
import Quick
import Nimble
@testable import SwiftNeoVim
class GridSpec: QuickSpec {
override func spec() {
describe("something") {
it("does things") {
let g = Grid()
expect(g.foreground).to(equal(qDefaultForeground))
}
}
}
}