mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
2535e3da42
Command structs are nested types of Mas. Renamed structs. Limit code visibility as much as possible. Standardize variable names. Standardize spacing. Fix a few tests. Disable a useless test. Remove unnecessary test stdout output. Get swift-format from Brewfile instead of from Package.swift since swift-format depends on an old version of swift-argument-parser. Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
29 lines
677 B
Swift
29 lines
677 B
Swift
//
|
|
// OutdatedSpec.swift
|
|
// masTests
|
|
//
|
|
// Created by Ben Chatelain on 2018-12-28.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import mas
|
|
|
|
public class OutdatedSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
Mas.initialize()
|
|
}
|
|
describe("outdated command") {
|
|
it("displays apps with pending updates") {
|
|
expect {
|
|
try Mas.Outdated.parse(["--verbose"])
|
|
.run(appLibrary: AppLibraryMock(), storeSearch: StoreSearchMock())
|
|
}
|
|
.to(beSuccess())
|
|
}
|
|
}
|
|
}
|
|
}
|