2018-12-28 15:23:22 -07:00
|
|
|
//
|
|
|
|
// OutdatedCommandSpec.swift
|
2024-10-01 14:05:41 -04:00
|
|
|
// masTests
|
2018-12-28 15:23:22 -07:00
|
|
|
//
|
|
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Nimble
|
2019-01-29 23:15:24 -07:00
|
|
|
import Quick
|
2018-12-28 15:23:22 -07:00
|
|
|
|
2024-10-01 14:05:41 -04:00
|
|
|
@testable import mas
|
2021-03-21 22:25:18 -07:00
|
|
|
|
2021-05-08 15:49:32 -07:00
|
|
|
public class OutdatedCommandSpec: QuickSpec {
|
2021-05-09 13:25:20 -07:00
|
|
|
override public func spec() {
|
2021-04-23 00:01:18 -07:00
|
|
|
beforeSuite {
|
2024-10-01 14:05:41 -04:00
|
|
|
Mas.initialize()
|
2021-04-23 00:01:18 -07:00
|
|
|
}
|
2018-12-28 15:23:22 -07:00
|
|
|
describe("outdated command") {
|
|
|
|
it("displays apps with pending updates") {
|
|
|
|
let cmd = OutdatedCommand()
|
2022-10-08 14:46:12 -06:00
|
|
|
let result = cmd.run(OutdatedCommand.Options(verbose: true))
|
2018-12-28 15:23:22 -07:00
|
|
|
print(result)
|
2022-10-08 14:46:12 -06:00
|
|
|
expect(result).to(beSuccess())
|
2018-12-28 15:23:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|