mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
25 lines
605 B
Swift
25 lines
605 B
Swift
//
|
|
// InstallCommandSpec.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import MasKit
|
|
|
|
class InstallCommandSpec: QuickSpec {
|
|
override func spec() {
|
|
describe("install command") {
|
|
it("installs apps") {
|
|
let cmd = InstallCommand()
|
|
let result = cmd.run(InstallCommand.Options(appIds: [], forceInstall: false))
|
|
print(result)
|
|
// expect(result).to(beSuccess())
|
|
}
|
|
}
|
|
}
|
|
}
|