mas/Tests/masTests/Commands/ListSpec.swift

32 lines
686 B
Swift
Raw Normal View History

2018-12-27 21:01:48 +00:00
//
// ListSpec.swift
// masTests
2018-12-27 21:01:48 +00:00
//
// Created by Ben Chatelain on 2018-12-27.
// Copyright © 2018 mas-cli. All rights reserved.
//
import Foundation
2018-12-27 21:01:48 +00:00
import Nimble
2019-01-30 06:15:24 +00:00
import Quick
2018-12-27 21:01:48 +00:00
@testable import mas
2021-03-22 05:25:18 +00:00
public class ListSpec: QuickSpec {
override public func spec() {
2021-04-23 07:01:18 +00:00
beforeSuite {
MAS.initialize()
2021-04-23 07:01:18 +00:00
}
2018-12-27 21:01:48 +00:00
describe("list command") {
2021-06-04 01:57:30 +00:00
it("lists apps") {
expect {
try captureStream(stderr) {
try MAS.List.parse([]).run(appLibrary: MockAppLibrary())
}
}
== "Error: No installed apps found\n"
2018-12-27 21:01:48 +00:00
}
}
}
}