mas/Tests/MasKitTests/Commands/SignOutCommandSpec.swift
2024-02-17 14:04:01 -07:00

27 lines
600 B
Swift

//
// SignOutCommandSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
import Nimble
import Quick
@testable import MasKit
public class SignOutCommandSpec: QuickSpec {
override public func spec() {
beforeSuite {
MasKit.initialize()
}
describe("signout command") {
it("signs out") {
let cmd = SignOutCommand()
let result = cmd.run(SignOutCommand.Options())
expect(result).to(beSuccess())
}
}
}
}