mas/Tests/masTests/Commands/ResetSpec.swift

29 lines
569 B
Swift
Raw Normal View History

2018-12-28 22:23:22 +00:00
//
// ResetSpec.swift
// masTests
2018-12-28 22:23:22 +00:00
//
// 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
@testable import mas
2021-03-22 05:25:18 +00:00
public class ResetSpec: QuickSpec {
2021-05-09 20:25:20 +00:00
override public func spec() {
2021-04-23 07:01:18 +00:00
beforeSuite {
Mas.initialize()
2021-04-23 07:01:18 +00:00
}
2018-12-28 22:23:22 +00:00
describe("reset command") {
2021-06-04 01:57:30 +00:00
it("resets the App Store state") {
expect {
try Mas.Reset.parse([]).runInternal()
}
.to(beSuccess())
2018-12-28 22:23:22 +00:00
}
}
}
}