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.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2019-01-29 23:15:24 -07:00
|
|
|
import Quick
|
2018-12-27 14:01:48 -07:00
|
|
|
|
2021-03-21 22:25:18 -07:00
|
|
|
@testable import MasKit
|
|
|
|
|
2021-05-08 15:49:32 -07:00
|
|
|
public class ListCommandSpec: QuickSpec {
|
2021-05-09 13:25:20 -07:00
|
|
|
override public func spec() {
|
2021-04-23 00:01:18 -07:00
|
|
|
beforeSuite {
|
|
|
|
MasKit.initialize()
|
|
|
|
}
|
2018-12-27 14:01:48 -07:00
|
|
|
describe("list command") {
|
|
|
|
it("lists stuff") {
|
|
|
|
let list = ListCommand()
|
|
|
|
let result = list.run(ListCommand.Options())
|
|
|
|
print(result)
|
2020-05-14 21:32:51 -06:00
|
|
|
// expect(result).to(beSuccess())
|
2018-12-27 14:01:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|