aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/build_options_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/test/build_options_spec.rb')
-rw-r--r--Library/Homebrew/test/build_options_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/test/build_options_spec.rb b/Library/Homebrew/test/build_options_spec.rb
index 5acc12f30..1e6c9ea35 100644
--- a/Library/Homebrew/test/build_options_spec.rb
+++ b/Library/Homebrew/test/build_options_spec.rb
@@ -1,10 +1,10 @@
require "build_options"
require "options"
-RSpec::Matchers.alias_matcher :be_built_with, :be_with
-RSpec::Matchers.alias_matcher :be_built_without, :be_without
-
describe BuildOptions do
+ alias_matcher :be_built_with, :be_with
+ alias_matcher :be_built_without, :be_without
+
subject { described_class.new(args, opts) }
let(:bad_build) { described_class.new(bad_args, opts) }
let(:args) { Options.create(%w[--with-foo --with-bar --without-qux]) }