Modified Rich Bradley's test-case to fail as part of suite and with a reasonable message

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
This commit is contained in:
Dmitry Ratnikov 2009-08-09 03:35:45 -05:00 committed by Jeremy Kemper
parent 22b38c18c6
commit f16008afdd

@ -4,6 +4,16 @@
class ModulesTest < ActiveRecord::TestCase
fixtures :accounts, :companies, :projects, :developers
def setup
# need to make sure Object::Firm is not defined, so that constantize will not be able to cheat when having to load namespaced classes
@firm_const = Object.send(:remove_const, :Firm) if Object.const_defined?(:Firm)
end
def teardown
# reinstate the Object::Firm constant for further tests
Object.send :const_set, :Firm, @firm_const unless @firm_const.nil?
end
def test_module_spanning_associations
firm = MyApplication::Business::Firm.find(:first)
assert !firm.clients.empty?, "Firm should have clients"
@ -40,8 +50,12 @@ def test_table_name
def test_eager_loading_in_modules
# need to add an eager loading condition to force the eager loading model into
# the old join model, to test that. See http://dev.rubyonrails.org/ticket/9640
begin
client_join_loaded = MyApplication::Business::Client.find(3, :include => {:firm => :account}, :conditions => 'accounts.id IS NOT NULL')
client_sequential_loaded = MyApplication::Business::Client.find(3, :include => {:firm => :account})
rescue NameError => nE
flunk "Should be able to resolve all classes via reflections"
end
[client_join_loaded, client_sequential_loaded].each do |client|
assert_no_queries do