#--- # Excerpted from "Agile Web Development with Rails, 2nd Ed." # We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/rails2 for more book information. #--- require File.dirname(__FILE__) + '/../test_helper' class LineItemTest < Test::Unit::TestCase fixtures :line_items # Replace this with your real tests. def test_truth assert true end end