We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e30b674 commit 701fd11Copy full SHA for 701fd11
spec/active_record/connection_adapters/oracle_enhanced/compatibility_spec.rb
@@ -25,11 +25,15 @@ def change
25
end
26
}.new
27
28
- migration.migrate(:up)
+ ActiveRecord::Migration.suppress_messages do
29
+ migration.migrate(:up)
30
+ end
31
expect(@conn.table_exists?(:new_test_employees)).to be_truthy
32
expect(@conn.table_exists?(:test_employees)).not_to be_truthy
33
- migration.migrate(:down)
34
35
+ migration.migrate(:down)
36
37
expect(@conn.table_exists?(:new_test_employees)).not_to be_truthy
38
expect(@conn.table_exists?(:test_employees)).to be_truthy
39
0 commit comments