mirror of
https://github.com/mas-cli/mas
synced 2024-11-21 19:23:01 +00:00
ab22e22ace
Partial #585 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
30 lines
713 B
Swift
30 lines
713 B
Swift
//
|
|
// AccountSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
/// Deprecated test.
|
|
public class AccountSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MAS.initialize()
|
|
}
|
|
// account command disabled since macOS 12 Monterey https://github.com/mas-cli/mas#known-issues
|
|
describe("Account command") {
|
|
it("displays active account") {
|
|
expect {
|
|
try MAS.Account.parse([]).run()
|
|
}
|
|
.to(throwError(MASError.notSupported))
|
|
}
|
|
}
|
|
}
|
|
}
|