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

25 lines
433 B
Swift

//
// SwiftNeoVimTests.swift
// SwiftNeoVimTests
//
// Created by Tae Won Ha on 03/07/16.
// Copyright © 2016 Tae Won Ha. All rights reserved.
//
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))
}
}
}
}