2020-03-21 11:31:46 +00:00
|
|
|
//
|
|
|
|
// PurchaseCommandSpec.swift
|
|
|
|
// MasKitTests
|
|
|
|
//
|
|
|
|
// Created by Maximilian Blochberger on 2020-03-21.
|
|
|
|
// Copyright © 2020 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
|
|
|
import Quick
|
|
|
|
|
2021-03-22 05:25:18 +00:00
|
|
|
@testable import MasKit
|
|
|
|
|
2021-05-08 22:49:32 +00:00
|
|
|
public class PurchaseCommandSpec: QuickSpec {
|
|
|
|
public override func spec() {
|
2020-03-21 11:31:46 +00:00
|
|
|
describe("purchase command") {
|
|
|
|
it("purchases apps") {
|
|
|
|
let cmd = PurchaseCommand()
|
|
|
|
let result = cmd.run(PurchaseCommand.Options(appIds: []))
|
|
|
|
print(result)
|
2020-05-15 03:32:51 +00:00
|
|
|
// expect(result).to(beSuccess())
|
2020-03-21 11:31:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|