mas/MasKitTests/Commands/AccountCommandSpec.swift

26 lines
581 B
Swift
Raw Normal View History

2018-12-28 22:23:22 +00:00
//
// AccountCommandSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
@testable import MasKit
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
import Result
2018-12-28 22:23:22 +00:00
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())
}
}
}
}