mas/Tests/MasKitTests/Commands/ListCommandSpec.swift
2021-04-26 21:04:37 -07:00

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())
}
}
}
}