mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
32 lines
841 B
Swift
32 lines
841 B
Swift
//
|
|
// OpenSystemCommandSpec.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 2/24/20.
|
|
// Copyright © 2020 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Nimble
|
|
import Quick
|
|
|
|
@testable import MasKit
|
|
|
|
public class OpenSystemCommandSpec: QuickSpec {
|
|
override public func spec() {
|
|
beforeSuite {
|
|
MasKit.initialize()
|
|
}
|
|
describe("open system command") {
|
|
context("binary path") {
|
|
it("defaults to the macOS open command") {
|
|
let cmd = OpenSystemCommand()
|
|
expect(cmd.binaryPath) == "/usr/bin/open"
|
|
}
|
|
it("can be overridden") {
|
|
let cmd = OpenSystemCommand(binaryPath: "/dev/null")
|
|
expect(cmd.binaryPath) == "/dev/null"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|