mas/Tests/masTests/Commands/AccountSpec.swift

31 lines
728 B
Swift
Raw Normal View History

2018-12-28 15:23:22 -07:00
//
// AccountSpec.swift
// masTests
2018-12-28 15:23:22 -07:00
//
// Created by Ben Chatelain on 2018-12-28.
// Copyright © 2018 mas-cli. All rights reserved.
//
import Nimble
2019-01-29 23:15:24 -07:00
import Quick
2018-12-28 15:23:22 -07:00
@testable import mas
2021-03-21 22:25:18 -07:00
// Deprecated test
public class AccountSpec: QuickSpec {
override public static func spec() {
2021-04-23 00:01:18 -07:00
beforeSuite {
Mas.initialize()
2021-04-23 00:01:18 -07:00
}
// 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))
2018-12-28 15:23:22 -07:00
}
}
}
}