mas/MasKitTests/Commands/PurchaseCommandSpec.swift
2021-03-28 14:21:14 -07:00

25 lines
599 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
class PurchaseCommandSpec: QuickSpec {
override func spec() {
describe("purchase command") {
it("purchases apps") {
let cmd = PurchaseCommand()
let result = cmd.run(PurchaseCommand.Options(appIds: []))
print(result)
// expect(result).to(beSuccess())
}
}
}
}