2018-12-28 22:23:22 +00:00
|
|
|
//
|
2024-10-01 22:55:04 +00:00
|
|
|
// UpgradeSpec.swift
|
2024-10-01 18:05:41 +00:00
|
|
|
// masTests
|
2018-12-28 22:23:22 +00:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-10-02 13:49:30 +00:00
|
|
|
import Foundation
|
2018-12-28 22:23:22 +00:00
|
|
|
import Nimble
|
2019-01-30 06:15:24 +00:00
|
|
|
import Quick
|
2018-12-28 22:23:22 +00:00
|
|
|
|
2024-10-01 18:05:41 +00:00
|
|
|
@testable import mas
|
2021-03-22 05:25:18 +00:00
|
|
|
|
2024-10-01 22:55:04 +00:00
|
|
|
public class UpgradeSpec: QuickSpec {
|
2024-10-18 14:28:44 +00:00
|
|
|
override public func spec() {
|
2021-04-23 07:01:18 +00:00
|
|
|
beforeSuite {
|
2024-10-25 17:21:19 +00:00
|
|
|
MAS.initialize()
|
2021-04-23 07:01:18 +00:00
|
|
|
}
|
2018-12-28 22:23:22 +00:00
|
|
|
describe("upgrade command") {
|
2024-10-02 13:49:30 +00:00
|
|
|
it("finds no upgrades") {
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
2024-10-02 13:49:30 +00:00
|
|
|
try captureStream(stderr) {
|
2024-10-25 17:21:19 +00:00
|
|
|
try MAS.Upgrade.parse([])
|
2024-10-26 00:48:03 +00:00
|
|
|
.run(appLibrary: MockAppLibrary(), searcher: MockAppStoreSearcher())
|
2024-10-02 13:49:30 +00:00
|
|
|
}
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-29 07:38:12 +00:00
|
|
|
.toNot(throwError())
|
2018-12-28 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|