From 26edd1d1128f26c63e673bd7f7ccf8ef73e5b069 Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Mon, 29 Jul 2019 14:05:51 +0900 Subject: Revert "Use assert_match / assert_no_match for asserting match" This reverts commit e9651deea4145f62224af56af027bfbb3e45e4cd. Now we're having both `=~` and `match?` for these objects, and it's nicer to have explicit tests for both of them --- actionpack/test/dispatch/mime_type_test.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'actionpack') diff --git a/actionpack/test/dispatch/mime_type_test.rb b/actionpack/test/dispatch/mime_type_test.rb index a8bc2f0e64..b0b2aa0cc1 100644 --- a/actionpack/test/dispatch/mime_type_test.rb +++ b/actionpack/test/dispatch/mime_type_test.rb @@ -167,12 +167,12 @@ class MimeTypeTest < ActiveSupport::TestCase end test "regexp matcher" do - assert_match Mime[:js], "text/javascript" - assert_match Mime[:js], "application/javascript" - assert_no_match Mime[:js], "text/html" - assert_match Mime[:js], "text/javascript" - assert_match Mime[:js], "application/javascript" - assert_match Mime[:html], "application/xhtml+xml" + assert Mime[:js] =~ "text/javascript" + assert Mime[:js] =~ "application/javascript" + assert Mime[:js] !~ "text/html" + assert_not (Mime[:js] !~ "text/javascript") + assert_not (Mime[:js] !~ "application/javascript") + assert Mime[:html] =~ "application/xhtml+xml" end test "match?" do -- cgit v1.2.3