16 lines
292 B
Ruby
16 lines
292 B
Ruby
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
|