2018-12-28 15:23:22 -07:00
|
|
|
//
|
2024-10-01 18:55:04 -04:00
|
|
|
// VersionSpec.swift
|
2024-10-01 14:05:41 -04:00
|
|
|
// masTests
|
2018-12-28 15:23:22 -07:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-10-02 09:49:30 -04:00
|
|
|
import Foundation
|
2018-12-28 15:23:22 -07:00
|
|
|
import Nimble
|
2019-01-29 23:15:24 -07:00
|
|
|
import Quick
|
2018-12-28 15:23:22 -07:00
|
|
|
|
2024-10-01 14:05:41 -04:00
|
|
|
@testable import mas
|
2021-03-21 22:25:18 -07:00
|
|
|
|
2024-10-01 18:55:04 -04:00
|
|
|
public class VersionSpec: QuickSpec {
|
2024-10-02 06:24:02 -04:00
|
|
|
override public static func spec() {
|
2021-04-23 00:01:18 -07:00
|
|
|
beforeSuite {
|
2024-10-01 14:05:41 -04:00
|
|
|
Mas.initialize()
|
2021-04-23 00:01:18 -07:00
|
|
|
}
|
2018-12-28 15:23:22 -07:00
|
|
|
describe("version command") {
|
|
|
|
it("displays the current version") {
|
2024-10-01 18:55:04 -04:00
|
|
|
expect {
|
2024-10-02 09:49:30 -04:00
|
|
|
try captureStream(stdout) {
|
|
|
|
try Mas.Version.parse([]).run()
|
|
|
|
}
|
2024-10-01 18:55:04 -04:00
|
|
|
}
|
2024-10-02 09:49:30 -04:00
|
|
|
== Package.version + "\n"
|
2018-12-28 15:23:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|