mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 04:50:24 +00:00
d7072fc66d
Rename `MasStoreSearch` as `ITunesSearchAppStoreSearcher`. Rename `StoreSearchMock` as `MockAppStoreSearcher`. Rename variables/parameters of the above types as `searcher`. Fix 'App Store.app' mention in help. Partial #585 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
32 lines
771 B
Swift
32 lines
771 B
Swift
//
|
|
// UpgradeSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class UpgradeSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MAS.initialize()
|
|
}
|
|
describe("upgrade command") {
|
|
it("finds no upgrades") {
|
|
expect {
|
|
try captureStream(stderr) {
|
|
try MAS.Upgrade.parse([])
|
|
.run(appLibrary: AppLibraryMock(), searcher: MockAppStoreSearcher())
|
|
}
|
|
}
|
|
== "Warning: Nothing found to upgrade\n"
|
|
}
|
|
}
|
|
}
|
|
}
|