mirror of
https://github.com/mas-cli/mas
synced 2024-11-26 05:20:18 +00:00
31 lines
769 B
Swift
31 lines
769 B
Swift
//
|
|
// PurchaseCommandSpec.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Maximilian Blochberger on 2020-03-21.
|
|
// Copyright © 2020 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import MasKit
|
|
|
|
public class PurchaseCommandSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MasKit.initialize()
|
|
}
|
|
describe("purchase command") {
|
|
it("purchases apps") {
|
|
let cmd = PurchaseCommand()
|
|
let result = cmd.run(PurchaseCommand.Options(appIds: []))
|
|
expect(result)
|
|
.to(
|
|
beFailure { error in
|
|
expect(error) == .notSupported
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|