Skip to content

Commit

Permalink
Move fixtures settings from AR::TestCase to railties test_help
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed Nov 14, 2008
1 parent 4e9abdd commit 9a88ab6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
10 changes: 1 addition & 9 deletions activerecord/lib/active_record/test_case.rb
@@ -1,15 +1,7 @@
require "active_support/test_case"

module ActiveRecord
module ActiveRecord
class TestCase < ActiveSupport::TestCase #:nodoc:
self.fixture_path = FIXTURES_ROOT
self.use_instantiated_fixtures = false
self.use_transactional_fixtures = true

def create_fixtures(*table_names, &block)
Fixtures.create_fixtures(FIXTURES_ROOT, table_names, {}, &block)
end

def assert_date_from_db(expected, actual, message = nil)
# SQL Server doesn't have a separate column type just for dates,
# so the time is in the string and incorrectly formatted
Expand Down
19 changes: 15 additions & 4 deletions railties/lib/test_help.rb
Expand Up @@ -11,11 +11,22 @@
require 'action_controller/integration'
require 'action_mailer/test_case' if defined?(ActionMailer)

Test::Unit::TestCase.fixture_path = RAILS_ROOT + "/test/fixtures/"
ActionController::IntegrationTest.fixture_path = Test::Unit::TestCase.fixture_path
if defined?(ActiveRecord)
require 'active_record/test_case'
require 'active_record/fixtures'

def create_fixtures(*table_names)
Fixtures.create_fixtures(Test::Unit::TestCase.fixture_path, table_names)
class ActiveSupport::TestCase
include ActiveRecord::TestFixtures
self.fixture_path = "#{RAILS_ROOT}/test/fixtures/"
self.use_instantiated_fixtures = false
self.use_transactional_fixtures = true
end

ActionController::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path

def create_fixtures(*table_names, &block)
Fixtures.create_fixtures(ActiveSupport::TestCase.fixture_path, table_names, {}, &block)
end
end

begin
Expand Down

0 comments on commit 9a88ab6

Please sign in to comment.