mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 12:03:12 +00:00
25 lines
572 B
Swift
25 lines
572 B
Swift
//
|
|
// InfoCommandSpec.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
@testable import MasKit
|
|
import Result
|
|
import Quick
|
|
import Nimble
|
|
|
|
class InfoCommandSpec: QuickSpec {
|
|
override func spec() {
|
|
describe("Info command") {
|
|
it("displays app details") {
|
|
let cmd = InfoCommand()
|
|
let result = cmd.run(InfoCommand.Options(appId: ""))
|
|
print(result)
|
|
// expect(result).to(beSuccess())
|
|
}
|
|
}
|
|
}
|
|
}
|