mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
265326dede
Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
31 lines
693 B
Swift
31 lines
693 B
Swift
//
|
|
// ListSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-27.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class ListSpec: QuickSpec {
|
|
override public static func spec() {
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("list command") {
|
|
it("lists apps") {
|
|
expect {
|
|
try captureStream(stderr) {
|
|
try Mas.List.parse([]).run(appLibrary: AppLibraryMock())
|
|
}
|
|
}
|
|
== "Error: No installed apps found\n"
|
|
}
|
|
}
|
|
}
|
|
}
|