2018-12-28 15:23:22 -07:00
|
|
|
//
|
2024-10-01 18:55:04 -04:00
|
|
|
// LuckySpec.swift
|
2024-10-01 14:05:41 -04:00
|
|
|
// masTests
|
2018-12-28 15:23:22 -07:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
2024-10-01 14:05:41 -04:00
|
|
|
@testable import mas
|
2021-03-21 22:25:18 -07:00
|
|
|
|
2024-10-01 18:55:04 -04:00
|
|
|
public class LuckySpec: QuickSpec {
|
2024-10-18 10:28:44 -04: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 {
|
2024-10-25 13:21:19 -04:00
|
|
|
MAS.initialize()
|
2021-04-23 00:01:18 -07:00
|
|
|
}
|
2024-10-01 22:16:06 -04:00
|
|
|
xdescribe("lucky command") {
|
2024-02-17 21:02:28 -07:00
|
|
|
xit("installs the first app matching a search") {
|
2024-10-01 18:55:04 -04:00
|
|
|
expect {
|
2024-10-25 13:21:19 -04:00
|
|
|
try MAS.Lucky.parse(["Slack"]).run(appLibrary: AppLibraryMock(), storeSearch: storeSearch)
|
2024-10-01 18:55:04 -04:00
|
|
|
}
|
2024-10-01 21:54:15 -04:00
|
|
|
.toNot(throwError())
|
2018-12-28 15:23:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|