aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Reiter2017-02-20 22:24:44 +0100
committerMarkus Reiter2017-02-20 22:24:52 +0100
commit68a2471916bfbe1a4491e92c097f93c38cdaeecc (patch)
treedd2fefc80f0f5cc46b9c788333bc47a079906284
parent60ba0e481ecdff412588450ad5b3fa8d7f771c4c (diff)
downloadbrew-68a2471916bfbe1a4491e92c097f93c38cdaeecc.tar.bz2
Use `alias_matcher` for `fail_with`.
-rw-r--r--Library/Homebrew/test/compiler_failure_spec.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/Library/Homebrew/test/compiler_failure_spec.rb b/Library/Homebrew/test/compiler_failure_spec.rb
index 81e464a87..b4fab0b27 100644
--- a/Library/Homebrew/test/compiler_failure_spec.rb
+++ b/Library/Homebrew/test/compiler_failure_spec.rb
@@ -1,12 +1,8 @@
require "compilers"
-describe CompilerFailure do
- matcher :fail_with do |expected|
- match do |actual|
- actual.fails_with?(expected)
- end
- end
+RSpec::Matchers.alias_matcher :fail_with, :be_fails_with
+describe CompilerFailure do
describe "::create" do
it "creates a failure when given a symbol" do
failure = described_class.create(:clang)