Skip to content

Commit 982fcb9

Browse files
committed
Let's be like the other adapters and use schema.rb if we can.
1 parent 56b5608 commit 982fcb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/aaaa_create_tables_test_sqlserver.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ def setup
99
@base_path = "#{File.dirname(__FILE__)}/fixtures/db_definitions"
1010
end
1111

12-
def test_sqlserver_load_test_schema
12+
def __test_sqlserver_load_test_schema
1313
execute_sql_file("#{@base_path}/sqlserver.drop.sql", ActiveRecord::Base.connection)
1414
execute_sql_file("#{@base_path}/sqlserver.sql", ActiveRecord::Base.connection)
1515
execute_sql_file("#{@base_path}/sqlserver2.drop.sql", Course.connection)
1616
execute_sql_file("#{@base_path}/sqlserver2.sql", Course.connection)
1717
assert true
1818
end
1919

20-
def __test_activerecord_load_test_schema
20+
def test_activerecord_load_test_schema
2121
eval(File.read("#{@ar_path}/schema.rb"))
2222
connection = ActiveRecord::Base.connection
2323
begin

0 commit comments

Comments
 (0)