創建has_and_belongs_to_many協會給出下面的 class User < ActiveRecord::Base
has_and_belongs_to_many :companies
end
class Company < ActiveRecord::Base
has_and_belongs_to_many :users
end
你如何定義企業和用戶
使用Authlogic進行測試時,是否有任何註銷和登錄其他用戶的方法? 下面的測試案例,只不過沒有 class MessagesControllerTest < ActionController::TestCase
setup :activate_authlogic
should "sender send a message and recipient delete it"
這裏是我的模型: Class Audition
belongs_to :video
end
Class Video
has_one :audition
end
和我的工廠: Factory.define :video do |v|
v.filename {Sham.filename}
v.video_url {Sham.url}
end
F