mas/MasKitTests/Commands/AccountCommandSpec.swift
2019-01-29 23:15:24 -07:00

25 lines
581 B
Swift

//
// AccountCommandSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
@testable import MasKit
import Nimble
import Quick
import Result
class AccountCommandSpec: QuickSpec {
override func spec() {
describe("Account command") {
it("displays active account") {
let cmd = AccountCommand()
let result = cmd.run(AccountCommand.Options())
print(result)
// expect(result).to(beSuccess())
}
}
}
}