2004-11-23 20:04:44 -05:00
|
|
|
require 'abstract_unit'
|
|
|
|
require 'fixtures/company_in_module'
|
|
|
|
|
|
|
|
class ModulesTest < Test::Unit::TestCase
|
2005-06-10 10:58:02 -04:00
|
|
|
fixtures :accounts, :companies, :projects, :developers
|
2004-11-23 20:04:44 -05:00
|
|
|
|
|
|
|
def test_module_spanning_associations
|
2005-06-26 07:25:32 -04:00
|
|
|
assert MyApplication::Business::Firm.find(:first).has_clients?, "Firm should have clients"
|
|
|
|
firm = MyApplication::Business::Firm.find(:first)
|
2004-11-23 20:04:44 -05:00
|
|
|
assert_nil firm.class.table_name.match('::'), "Firm shouldn't have the module appear in its table name"
|
|
|
|
assert_equal 2, firm.clients_count, "Firm should have two clients"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_module_spanning_has_and_belongs_to_many_associations
|
2005-06-26 07:25:32 -04:00
|
|
|
project = MyApplication::Business::Project.find(:first)
|
2004-11-23 20:04:44 -05:00
|
|
|
project.developers << MyApplication::Business::Developer.create("name" => "John")
|
|
|
|
assert "John", project.developers.last.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_associations_spanning_cross_modules
|
|
|
|
assert MyApplication::Billing::Account.find(1).has_firm?, "37signals account should be able to backtrack"
|
|
|
|
end
|
2005-06-10 10:58:02 -04:00
|
|
|
end
|