mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
25 lines
559 B
Swift
25 lines
559 B
Swift
//
|
|
// ListCommandSpec.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-27.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import MasKit
|
|
|
|
class ListCommandSpec: QuickSpec {
|
|
override func spec() {
|
|
describe("list command") {
|
|
it("lists stuff") {
|
|
let list = ListCommand()
|
|
let result = list.run(ListCommand.Options())
|
|
print(result)
|
|
// expect(result).to(beSuccess())
|
|
}
|
|
}
|
|
}
|
|
}
|