mas/Tests/masTests/Commands/AccountSpec.swift
Ross Goldberg dccac33abb
Improve tests.
Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
2024-10-14 04:40:01 -04:00

30 lines
728 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 static func spec() {
beforeSuite {
Mas.initialize()
}
// account command disabled since macOS 12 Monterey https://github.com/mas-cli/mas#%EF%B8%8F-known-issues
describe("Account command") {
it("displays active account") {
expect {
try Mas.Account.parse([]).run()
}
.to(throwError(MASError.notSupported))
}
}
}
}