mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
64ab55718a
Don't output a warning if nothing requires an upgrade. Partial #533 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
32 lines
747 B
Swift
32 lines
747 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: MockAppLibrary(), searcher: MockAppStoreSearcher())
|
|
}
|
|
}
|
|
.toNot(throwError())
|
|
}
|
|
}
|
|
}
|
|
}
|