require File.dirname(__FILE__) + '/../test_helper' class CompanyTest < Test::Unit::TestCase fixtures :companies check_input_sanitation 'Company' def test_owner account = Account.new company = Company.new company.account = account assert company.owner?(account) end end