mirror of
https://github.com/mas-cli/mas
synced 2024-11-25 04:50:24 +00:00
388d963cd1
Throw when failure. Normal Void return when success. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
28 lines
573 B
Swift
28 lines
573 B
Swift
//
|
|
// ListSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-27.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class ListSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("list command") {
|
|
it("lists apps") {
|
|
expect {
|
|
try Mas.List.parse([]).run(appLibrary: AppLibraryMock())
|
|
}
|
|
.toNot(throwError())
|
|
}
|
|
}
|
|
}
|
|
}
|