mas/Tests/masTests/Commands/SignOutSpec.swift
Ross Goldberg ab22e22ace
Rename Mas as MAS.
Partial #585

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-25 22:52:20 -04:00

28 lines
556 B
Swift

//
// SignOutSpec.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 SignOutSpec: QuickSpec {
override public func spec() {
beforeSuite {
MAS.initialize()
}
describe("signout command") {
it("signs out") {
expect {
try MAS.SignOut.parse([]).run()
}
.toNot(throwError())
}
}
}
}