2018-12-28 15:23:22 -07:00
|
|
|
//
|
|
|
|
// LuckyCommandSpec.swift
|
|
|
|
// MasKitTests
|
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2019-01-29 23:15:24 -07:00
|
|
|
import Quick
|
2018-12-28 15:23:22 -07:00
|
|
|
|
2021-03-21 22:25:18 -07:00
|
|
|
@testable import MasKit
|
|
|
|
|
2021-05-08 15:49:32 -07:00
|
|
|
public class LuckyCommandSpec: QuickSpec {
|
2021-05-09 13:25:20 -07:00
|
|
|
override public func spec() {
|
2023-11-25 13:00:00 -07:00
|
|
|
let networkSession = NetworkSessionMockFromFile(responseFile: "search/slack.json")
|
|
|
|
let storeSearch = MasStoreSearch(networkManager: NetworkManager(session: networkSession))
|
|
|
|
|
2021-04-23 00:01:18 -07:00
|
|
|
beforeSuite {
|
|
|
|
MasKit.initialize()
|
|
|
|
}
|
2018-12-28 15:23:22 -07:00
|
|
|
describe("lucky command") {
|
2024-02-17 21:02:28 -07:00
|
|
|
xit("installs the first app matching a search") {
|
2023-11-25 13:00:00 -07:00
|
|
|
let cmd = LuckyCommand(storeSearch: storeSearch)
|
|
|
|
let result = cmd.run(LuckyCommand.Options(appName: "Slack", forceInstall: false))
|
2021-06-03 18:57:30 -07:00
|
|
|
expect(result).to(beSuccess())
|
2018-12-28 15:23:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|