mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
25 lines
589 B
Swift
25 lines
589 B
Swift
//
|
|
// VersionCommandSpec.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import MasKit
|
|
|
|
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())
|
|
}
|
|
}
|
|
}
|
|
}
|