用rails 2.3.2编写单元测试的时候遇到
undefined method `use_transactional_fixtures='
的错误,解决该问题需要将 test/test_help.rb中的
class Test::Unit::TestCase
替换成
class ActiveSupport::TestCase
即可
用rails 2.3.2编写单元测试的时候遇到
undefined method `use_transactional_fixtures='
的错误,解决该问题需要将 test/test_help.rb中的
class Test::Unit::TestCase
替换成
class ActiveSupport::TestCase
即可