blob: 90565ae80e219dee80b16679a5d565cad6f4533b (
plain)
1
2
3
4
5
6
7
8
9
10
|
require File.dirname(__FILE__) + '/../test_helper'
class RoleTest < Test::Unit::TestCase
fixtures :roles
# Replace this with your real tests.
def test_truth
assert_kind_of Role, roles(:first)
end
end
|