2018-12-28 22:23:22 +00:00
|
|
|
//
|
2024-10-01 22:55:04 +00:00
|
|
|
// AccountSpec.swift
|
2024-10-01 18:05:41 +00:00
|
|
|
// masTests
|
2018-12-28 22:23:22 +00:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2019-01-30 06:15:24 +00:00
|
|
|
import Quick
|
2018-12-28 22:23:22 +00:00
|
|
|
|
2024-10-01 18:05:41 +00:00
|
|
|
@testable import mas
|
2021-03-22 05:25:18 +00:00
|
|
|
|
2023-11-25 20:00:37 +00:00
|
|
|
// Deprecated test
|
2024-10-01 22:55:04 +00:00
|
|
|
public class AccountSpec: QuickSpec {
|
2024-10-02 10:24:02 +00:00
|
|
|
override public static func spec() {
|
2021-04-23 07:01:18 +00:00
|
|
|
beforeSuite {
|
2024-10-01 18:05:41 +00:00
|
|
|
Mas.initialize()
|
2021-04-23 07:01:18 +00:00
|
|
|
}
|
2023-11-25 20:00:37 +00:00
|
|
|
// account command disabled since macOS 12 Monterey https://github.com/mas-cli/mas#%EF%B8%8F-known-issues
|
2024-10-02 02:16:06 +00:00
|
|
|
describe("Account command") {
|
|
|
|
it("displays active account") {
|
2024-10-01 22:55:04 +00:00
|
|
|
expect {
|
2024-10-02 01:54:15 +00:00
|
|
|
try Mas.Account.parse([]).run()
|
2024-10-01 22:55:04 +00:00
|
|
|
}
|
2024-10-02 02:16:06 +00:00
|
|
|
.to(throwError(MASError.notSupported))
|
2018-12-28 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|