15 lines
251 B
Ruby
15 lines
251 B
Ruby
|
require File.dirname(__FILE__) + '/../test_helper'
|
||
|
|
||
|
class UserTest < Test::Unit::TestCase
|
||
|
fixtures :users
|
||
|
|
||
|
def setup
|
||
|
@user = User.find(1)
|
||
|
end
|
||
|
|
||
|
# Replace this with your real tests.
|
||
|
def test_truth
|
||
|
assert_kind_of User, @user
|
||
|
end
|
||
|
end
|