File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ services:
9
9
build :
10
10
context : .
11
11
dockerfile : Dockerfile.ci
12
- command : wait-for sqlserver:1433 -- bundle exec rake test TEST_FILES="test/cases/temp_test_sqlserver.rb" TESTOPTS="-v"
12
+ command : wait-for sqlserver:1433 -- bundle exec rake test TESTOPTS="-v"
13
13
depends_on :
14
14
- " sqlserver"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class TempTestSQLServer < ActiveRecord::TestCase
11
11
12
12
it "insert from one schema to another using raw SQL" do
13
13
skip
14
-
14
+
15
15
arunit_connection = Dog . lease_connection
16
16
arunit2_connection = OtherDog . lease_connection
17
17
@@ -31,6 +31,9 @@ class TempTestSQLServer < ActiveRecord::TestCase
31
31
assert Dog . count , 1
32
32
assert OtherDog . count , 0
33
33
34
+ puts "*** current_isolation_level 1=#{ arunit_connection . send ( :current_isolation_level ) } "
35
+ puts "*** current_isolation_level 2=#{ arunit2_connection . send ( :current_isolation_level ) } "
36
+
34
37
# Dog.transaction do
35
38
# arunit_connection.transaction do
36
39
assert_nothing_raised do
You can’t perform that action at this time.
0 commit comments