1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 07:13:24 +03:00
vimr/SwiftNeoVimTests/SwiftNeoVimTests.swift
Tae Won Ha 4f46e619cf
Rename nvox to VimR
- hopefully we renamed everything
2016-07-12 17:59:01 +02:00

22 lines
350 B
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
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))
}
}
}
}