mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
5a02ee2bd8
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3640 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
28 lines
1.3 KiB
Ruby
28 lines
1.3 KiB
Ruby
require 'abstract_unit'
|
|
require 'fixtures/company_in_module'
|
|
|
|
class ModulesTest < Test::Unit::TestCase
|
|
fixtures :accounts, :companies, :projects, :developers
|
|
|
|
def test_module_spanning_associations
|
|
assert MyApplication::Business::Firm.find(:first).has_clients?, "Firm should have clients"
|
|
firm = MyApplication::Business::Firm.find(:first)
|
|
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
|
|
project = MyApplication::Business::Project.find(:first)
|
|
project.developers << MyApplication::Business::Developer.create("name" => "John")
|
|
assert "John", project.developers.last.name
|
|
end
|
|
|
|
def test_associations_spanning_cross_modules
|
|
account = MyApplication::Billing::Account.find(:first, :order => 'id')
|
|
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
|
|
end
|
|
end
|