Files

16 lines
292 B
Ruby
Raw Permalink Normal View History

2008-11-25 22:11:16 +01:00
require File.dirname(__FILE__) + '/../test_helper'
class CustomerTest < Test::Unit::TestCase
fixtures :customers
# Replace this with your real tests.
def test_truth
assert true
end
def
customer = Customer.find(1)
asssert_equal "Jean_Charles", customer.name
end
end