brew/Library/Homebrew/test/cask/cli/doctor_spec.rb
2017-10-03 10:56:40 +02:00

18 lines
460 B
Ruby

require_relative "shared_examples/invalid_option"
describe Hbc::CLI::Doctor, :cask do
it_behaves_like "a command that handles invalid options"
it "displays some nice info about the environment" do
expect {
Hbc::CLI::Doctor.run
}.to output(/\A==> Homebrew-Cask Version/).to_stdout
end
it "raises an exception when arguments are given" do
expect {
Hbc::CLI::Doctor.run("argument")
}.to raise_error(ArgumentError)
end
end