mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
f8d7a36a4c
Quick upgrade necessary if we ever switch from PromiseKit to Swift concurrency. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
28 lines
582 B
Swift
28 lines
582 B
Swift
//
|
|
// VersionSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class VersionSpec: QuickSpec {
|
|
override public static func spec() {
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("version command") {
|
|
it("displays the current version") {
|
|
expect {
|
|
try Mas.Version.parse([]).run()
|
|
}
|
|
.toNot(throwError())
|
|
}
|
|
}
|
|
}
|
|
}
|