mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
13 lines
263 B
Ruby
13 lines
263 B
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
require_relative "shared_examples/invalid_option"
|
|
|
|
describe Cask::Cmd::Home, :cask do
|
|
before do
|
|
allow(described_class).to receive(:open_url)
|
|
end
|
|
|
|
it_behaves_like "a command that handles invalid options"
|
|
end
|