mas/Tests/masTests/Commands/InstallSpec.swift
Ross Goldberg f8d7a36a4c
Upgrade test dependencies.
Quick upgrade necessary if we ever switch from PromiseKit to Swift concurrency.

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-14 04:39:51 -04:00

28 lines
597 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 static func spec() {
beforeSuite {
Mas.initialize()
}
xdescribe("install command") {
xit("installs apps") {
expect {
try Mas.Install.parse([]).run(appLibrary: AppLibraryMock())
}
.toNot(throwError())
}
}
}
}