search for: test_view_product

Displaying 1 result from an estimated 1 matches for "test_view_product".

2006 May 04
3
@products["car"] is not being recognized in my tests!! help
@products["car"] is not being recognized in my tests: class ProductsControllerTest < Test::Unit::TestCase fixtures :products def test_view_product post :view_product, :id=>@products["car"].id assert_template "view_product" ... end end products.yml : car: id:1 name:test Does anyone have any idea why its not working? Im having to do this instead, which is not ideal: post :view_product, :id=>1 Tha...