mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
Move MasKitTests module to masTests. Rename MasKit enum as Mas. Upgrade swift-tools-version from 5.3 to 5.6.1. swift-tools-version 5.5+ is necessary to allow test code to import executable target code, to allow MasKit library code to be moved into the mas executable. Upgrade to swift-tools-version to 5.6.1 instead of to 5.5 because they support all the same macOS versions. Standardize comments. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
27 lines
620 B
Swift
27 lines
620 B
Swift
//
|
|
// PurchaseCommandSpec.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 PurchaseCommandSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("purchase command") {
|
|
it("purchases apps") {
|
|
let cmd = PurchaseCommand()
|
|
let result = cmd.run(PurchaseCommand.Options(appIds: []))
|
|
expect(result).to(beSuccess())
|
|
}
|
|
}
|
|
}
|
|
}
|