2018-12-28 22:23:22 +00:00
|
|
|
//
|
|
|
|
// OutdatedCommandSpec.swift
|
|
|
|
// MasKitTests
|
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2019-01-30 06:15:24 +00:00
|
|
|
import Quick
|
2018-12-28 22:23:22 +00:00
|
|
|
|
2021-03-22 05:25:18 +00:00
|
|
|
@testable import MasKit
|
|
|
|
|
2021-05-08 22:49:32 +00:00
|
|
|
public class OutdatedCommandSpec: QuickSpec {
|
|
|
|
public override func spec() {
|
2018-12-28 22:23:22 +00:00
|
|
|
describe("outdated command") {
|
|
|
|
it("displays apps with pending updates") {
|
|
|
|
let cmd = OutdatedCommand()
|
|
|
|
let result = cmd.run(OutdatedCommand.Options())
|
|
|
|
print(result)
|
2020-05-15 03:32:51 +00:00
|
|
|
// expect(result).to(beSuccess())
|
2018-12-28 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|