mas/MasKitTests/Commands/VersionCommandSpec.swift

25 lines
572 B
Swift
Raw Normal View History

2018-12-28 22:23:22 +00:00
//
// VersionCommandSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
@testable import MasKit
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
2018-12-28 22:23:22 +00:00
class VersionCommandSpec: QuickSpec {
override func spec() {
describe("version command") {
it("displays the current version") {
let cmd = VersionCommand()
let result = cmd.run(VersionCommand.Options())
print(result)
// expect(result).to(beSuccess())
}
}
}
}