I developped a web site with Ruby on Rails, but I get a problem during the testing.
I have a parent table called "orders" and a child table called "line_items".
I created some data for the test in the files "test/fixtures/orders.yml" and "test/fixtures/line_items.yml".
In the file "test/unit/order_test.rb" I wrote some code to test the "Add", "Update" and "Destroy" for my model"Order".
My problem is that on the "Update" I try to update a quantity which is a field of my table "line_items" which is a child of my table "orders".
1> Failure:
test_update<OrderTest> [test/unit/order_test.rb:25]:
<4> expected but was <2>.
I tried lots of different things, but I always get that error. I really don't know why.
Here's the declaration of my model order.rb
class Order < ActiveRecord::Base
has_many :line_items, :exclusively_dependent => true
end
Here's the declaration of my model line_item.rb
class LineItem < ActiveRecord::Base
belongs_to :order
end
And I put at the begining of the order_test.rb file.
fixtures :orders, :line_items
I guess I'm doing wrong, maybe it's not the way to update a child row or I probably miss something, unless we can't update a child row through a parent model.
If someone has the answer and can help me to figure out why the update doesn't work, that will be great.
Thank you.
Last edited by sweatje; Jun 6, 2006 at 07:43.
Reason: disable smilies to make code readable
Bookmarks