mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
e639341d11
Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
28 lines
643 B
Swift
28 lines
643 B
Swift
//
|
|
// PurchaseSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Maximilian Blochberger on 2020-03-21.
|
|
// Copyright © 2020 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class PurchaseSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MAS.initialize()
|
|
}
|
|
xdescribe("purchase command") {
|
|
xit("purchases apps") {
|
|
expect {
|
|
try MAS.Purchase.parse(["999"]).run(appLibrary: MockAppLibrary(), searcher: MockAppStoreSearcher())
|
|
}
|
|
.toNot(throwError())
|
|
}
|
|
}
|
|
}
|
|
}
|