Naming conventions for models in ruby on rails are overridden.Entity User and Responder have many to many association between them.It is expressed with has many through.
Following are the model files:
user.rb: has_many :Usertoresponder has_many :responder, :through => :Usertoresponder
responder.rb: has_many :Usertoresponder has_many :user, :through => :Usertoresponder , :dependent => :destroy
usertoresponder.rb: class Usertoresponder < ActiveRecord::Base self.table_name = 'User_To_Responder' belongs_to :user belongs_to :responder end
But when saving or getting responder through user there is a problem occurring it says - user.responder is not defined.
And the above problem is not occurring when its done using test case but its occurring if its done through http request.