Displaying 1 result from an estimated 1 matches for "pc_image".
Did you mean:
  p_image
  
2005 Dec 31
2
Test Unit Problem
Hello All,
I am experiencing the following test unit error working with Rails that 
I can''t fathom.
I have a products.yml file which holds the following test fixture for 
the products table:
dell_pc:
 id: 1
 title: Dell PC
 description: Dell PC
 image_url: http://.../pc_image.jpg
 price: 15000.00
 date_available: 2005-12-31 06:53:00
I also have the following product_test.rb file to test the fixture 
above:
require File.dirname(__FILE__) + ''/../test_helper''
class ProductTest < Test::Unit::TestCase
  fixtures :products
  def setup
    @product = P...