mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
28 lines
662 B
Swift
28 lines
662 B
Swift
//
|
|
// AccountCommandSpec.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 AccountCommandSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MasKit.initialize()
|
|
}
|
|
describe("Account command") {
|
|
it("displays active account") {
|
|
let cmd = AccountCommand()
|
|
let result = cmd.run(AccountCommand.Options())
|
|
print(result)
|
|
// expect(result).to(beSuccess())
|
|
}
|
|
}
|
|
}
|
|
}
|