mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 11:35:35 +03:00
25 lines
433 B
Swift
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))
|
|
}
|
|
}
|
|
}
|
|
}
|