8 lines
155 B
Ruby
8 lines
155 B
Ruby
|
require "test_helper"
|
||
|
|
||
|
class UserRoleTest < ActiveSupport::TestCase
|
||
|
test "name must exist" do
|
||
|
assert_must_exist(site_roles(:admin), :name)
|
||
|
end
|
||
|
end
|