From 1d003e5d8a292443d4489acd2ec80e1f4d2b3476 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sat, 27 Feb 2021 09:29:58 +0100 Subject: [PATCH] formula_assertions: add assert_not_match compat There are some formulae using this method: https://github.com/Homebrew/homebrew-core/search?q=assert_not_match&type= --- Library/Homebrew/formula_assertions.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/formula_assertions.rb b/Library/Homebrew/formula_assertions.rb index f331f3d5ff..c13ddddd7d 100644 --- a/Library/Homebrew/formula_assertions.rb +++ b/Library/Homebrew/formula_assertions.rb @@ -28,6 +28,7 @@ module Homebrew assert_not_includes: :refute_includes, assert_not_instance_of: :refute_instance_of, assert_not_kind_of: :refute_kind_of, + assert_not_match: :refute_match, assert_no_match: :refute_match, assert_not_nil: :refute_nil, assert_not_operator: :refute_operator,