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
|
|
|
firm = MyApplication::Business::Firm.find(:first)
|
2006-09-15 03:02:05 -04:00
|
|
|
assert !firm.clients.empty?, "Firm should have clients"
|
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"
|
|
|
|
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
|
2006-02-23 00:48:29 -05:00
|
|
|
account = MyApplication::Billing::Account.find(:first, :order => 'id')
|
2006-02-22 13:44:14 -05:00
|
|
|
assert_kind_of MyApplication::Business::Firm, account.firm
|
|
|
|
assert_kind_of MyApplication::Billing::Firm, account.qualified_billing_firm
|
|
|
|
assert_kind_of MyApplication::Billing::Firm, account.unqualified_billing_firm
|
|
|
|
assert_kind_of MyApplication::Billing::Nested::Firm, account.nested_qualified_billing_firm
|
|
|
|
assert_kind_of MyApplication::Billing::Nested::Firm, account.nested_unqualified_billing_firm
|
2004-11-23 20:04:44 -05:00
|
|
|
end
|
2006-05-15 10:08:51 -04:00
|
|
|
|
|
|
|
def test_find_account_and_include_company
|
|
|
|
account = MyApplication::Billing::Account.find(1, :include => :firm)
|
|
|
|
assert_kind_of MyApplication::Business::Firm, account.instance_variable_get('@firm')
|
|
|
|
assert_kind_of MyApplication::Business::Firm, account.firm
|
|
|
|
end
|
|
|
|
|
2005-06-10 10:58:02 -04:00
|
|
|
end
|