mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
25 lines
576 B
Swift
25 lines
576 B
Swift
//
|
|
// HomeCommandSpec.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-29.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
@testable import MasKit
|
|
import Result
|
|
import Quick
|
|
import Nimble
|
|
|
|
class HomeCommandSpec: QuickSpec {
|
|
override func spec() {
|
|
describe("home command") {
|
|
it("opens app on MAS Preview") {
|
|
let cmd = HomeCommand()
|
|
let result = cmd.run(HomeCommand.Options(appId: ""))
|
|
print(result)
|
|
// expect(result).to(beSuccess())
|
|
}
|
|
}
|
|
}
|
|
}
|