mas/Tests/masTests/Commands/OpenSpec.swift

35 lines
748 B
Swift
Raw Permalink Normal View History

2019-01-04 01:22:26 +00:00
//
// OpenSpec.swift
// masTests
2019-01-04 01:22:26 +00:00
//
// Created by Ben Chatelain on 2019-01-03.
// Copyright © 2019 mas-cli. All rights reserved.
//
2021-04-26 23:44:17 +00:00
import Foundation
2019-01-04 01:22:26 +00:00
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
2019-01-04 01:22:26 +00:00
@testable import mas
2021-03-22 05:25:18 +00:00
public class OpenSpec: QuickSpec {
override public func spec() {
let searcher = MockAppStoreSearcher()
2019-01-05 01:01:22 +00:00
2021-04-23 07:01:18 +00:00
beforeSuite {
MAS.initialize()
2021-04-23 07:01:18 +00:00
}
2019-01-05 01:01:22 +00:00
describe("open command") {
beforeEach {
searcher.reset()
2019-01-05 01:01:22 +00:00
}
it("can't find app with unknown ID") {
expect {
try MAS.Open.parse(["999"]).run(searcher: searcher)
}
.to(throwError(MASError.unknownAppID(999)))
2019-01-05 01:01:22 +00:00
}
2019-01-04 01:22:26 +00:00
}
}
}