mas/MasKitTests/Commands/ListCommandSpec.swift

26 lines
556 B
Swift
Raw Normal View History

2018-12-27 14:01:48 -07:00
//
// ListCommandSpec.swift
// MasKitTests
//
// Created by Ben Chatelain on 2018-12-27.
// Copyright © 2018 mas-cli. All rights reserved.
//
@testable import MasKit
import Nimble
2019-01-29 23:15:24 -07:00
import Quick
import Result
2018-12-27 14:01:48 -07:00
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())
}
}
}
}