Displaying 1 result from an estimated 1 matches for "procedure_test".
2012 Jan 27
3
How to test the model dependence ?
...I''m new to rails and am having some basic questions in development. See
if anyone can help me with a test problem. I need to test if my model
"Procedure" is linked to the workflow. If not, the system must
acknowledge an error. Below is the code that is in the file test \ unit
\ procedure_test.rb.
require ''test_helper''
class ProcedureTest < ActiveSupport::TestCase
should belong_to :workflow
should has_many :tasks, :through => :workflow
#should has_one :timeline
#should has_many :timeline_items, :through => :timeline
end
The shoul "belong_to"...