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=
This commit is contained in:
Dawid Dziurla 2021-02-27 09:29:58 +01:00 committed by GitHub
parent 02989975cc
commit 1d003e5d8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,