Displaying 1 result from an estimated 1 matches for "first_quest".
2006 Mar 08
0
Unit tests dynamic finders
...n''t find the
answer with id 1 anymore(Answer.find(1)). But I appearently _do_ find it
with Answer.find_by_question_id(1) or Answer.find(:first, :conditions =>
"question_id = 1"). What am I doing wrong??
Below you will find the relevant files used in testing.
questions.yml:
first_question:
id: 1
question: "Will fixture files work?"
answer: "No"
answers.yml:
first_answer:
id: 1
question_id: 1
question_test.rb:
class QuestionTest < Test::Unit::TestCase
fixtures :categories, :questions, :answers
def test_destroy
question = question...