We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a50e817 commit 3f91066Copy full SHA for 3f91066
test_rails/generators/flipper/update_generator_test.rb
@@ -65,7 +65,7 @@ class UpdateGeneratorTest < Rails::Generators::TestCase
65
66
assert_migration "db/migrate/create_flipper_tables.rb" do |migration|
67
assert_method :up, migration do |up|
68
- assert_match /text :value/, up
+ assert_match(/text :value/, up)
69
end
70
71
test_rails/helper.rb
@@ -4,6 +4,9 @@
4
require 'rails'
5
require 'rails/test_help'
6
7
+require 'warning'
8
+Warning.ignore(/lib\/capybara\//)
9
+
10
begin
11
ActiveSupport::TestCase.test_order = :random
12
rescue NoMethodError
0 commit comments