Skip to content

Commit b66034a

Browse files
committed
[Rails3] Reorganizing helper around so that we are file joining for windows testing. Fix debug log location.
1 parent 70ba8da commit b66034a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

RAILS3_NOTES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ on a local branch of our remote tracking branch.
5656
* Move all sqlserver_adapter/core_ext files to sqlserver/core_ext.
5757
* Make sure the repair special columns was good to go.
5858
* Possibly remove 2000 support and query methods.
59+
* Make sure Gemspec is good.
5960

6061

6162

test/connections/native_sqlserver/connection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require_dependency 'models/course'
33
require 'logger'
44

5-
ActiveRecord::Base.logger = Logger.new("debug.log")
5+
ActiveRecord::Base.logger = Logger.new(File.expand_path(File.join(SQLSERVER_TEST_ROOT,'debug.log')))
66

77
ActiveRecord::Base.configurations = {
88
'arunit' => {

test/connections/native_sqlserver_odbc/connection.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require_dependency 'models/course'
33
require 'logger'
44

5-
ActiveRecord::Base.logger = Logger.new("debug.log")
5+
ActiveRecord::Base.logger = Logger.new(File.expand_path(File.join(SQLSERVER_TEST_ROOT,'debug.log')))
66

77
ActiveRecord::Base.configurations = {
88
'arunit' => {

0 commit comments

Comments
 (0)