mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
880843d8e6
Resolve #585 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
31 lines
837 B
Swift
31 lines
837 B
Swift
//
|
|
// LuckySpec.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 LuckySpec: QuickSpec {
|
|
override public func spec() {
|
|
let networkSession = MockFromFileNetworkSession(responseFile: "search/slack.json")
|
|
let searcher = ITunesSearchAppStoreSearcher(networkManager: NetworkManager(session: networkSession))
|
|
|
|
beforeSuite {
|
|
MAS.initialize()
|
|
}
|
|
xdescribe("lucky command") {
|
|
xit("installs the first app matching a search") {
|
|
expect {
|
|
try MAS.Lucky.parse(["Slack"]).run(appLibrary: MockAppLibrary(), searcher: searcher)
|
|
}
|
|
.toNot(throwError())
|
|
}
|
|
}
|
|
}
|
|
}
|