2008-01-21 12:20:51 -05:00
require " cases/helper "
2008-01-18 02:31:37 -05:00
require 'models/company_in_module'
2004-11-23 20:04:44 -05:00
2008-01-21 12:20:51 -05:00
class ModulesTest < ActiveRecord :: 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
2008-01-18 02:30:42 -05:00
2004-11-23 20:04:44 -05:00
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
2008-01-18 02:30:42 -05:00
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
2008-01-18 02:30:42 -05:00
2008-04-07 15:44:37 -04:00
def test_table_name
assert_equal 'accounts' , MyApplication :: Billing :: Account . table_name , 'table_name for ActiveRecord model in module'
assert_equal 'companies' , MyApplication :: Business :: Client . table_name , 'table_name for ActiveRecord model subclass'
assert_equal 'company_contacts' , MyApplication :: Business :: Client :: Contact . table_name , 'table_name for ActiveRecord model enclosed by another ActiveRecord model'
end
2005-06-10 10:58:02 -04:00
end