mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
e639341d11
Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
28 lines
624 B
Swift
28 lines
624 B
Swift
//
|
|
// InstallSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class InstallSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MAS.initialize()
|
|
}
|
|
xdescribe("install command") {
|
|
xit("installs apps") {
|
|
expect {
|
|
try MAS.Install.parse([]).run(appLibrary: MockAppLibrary(), searcher: MockAppStoreSearcher())
|
|
}
|
|
.toNot(throwError())
|
|
}
|
|
}
|
|
}
|
|
}
|