提交 2730f105 编写于 作者: E Edouard CHIN

Use testing lazy-load hooks:

- In order to avoid loading classes prematurely, let's use lazy load hooks that are now provided with each test case
上级 80a9510b
...@@ -20,28 +20,29 @@ ...@@ -20,28 +20,29 @@
exit 1 exit 1
end end
module ActiveSupport ActiveSupport.on_load(:active_support_test_case) do
class TestCase include ActiveRecord::TestDatabases
include ActiveRecord::TestDatabases include ActiveRecord::TestFixtures
include ActiveRecord::TestFixtures
self.fixture_path = "#{Rails.root}/test/fixtures/" self.fixture_path = "#{Rails.root}/test/fixtures/"
self.file_fixture_path = fixture_path + "files" self.file_fixture_path = fixture_path + "files"
end
end end
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path ActiveSupport.on_load(:action_dispatch_integration_test) do
self.fixture_path = ActiveSupport::TestCase.fixture_path
end
end end
# :enddoc: # :enddoc:
class ActionController::TestCase ActiveSupport.on_load(:action_controller_test_case) do
def before_setup # :nodoc: def before_setup # :nodoc:
@routes = Rails.application.routes @routes = Rails.application.routes
super super
end end
end end
class ActionDispatch::IntegrationTest ActiveSupport.on_load(:action_dispatch_integration_test) do
def before_setup # :nodoc: def before_setup # :nodoc:
@routes = Rails.application.routes @routes = Rails.application.routes
super super
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册