10 lines
189 B
Ruby
10 lines
189 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "test_helper"
|
||
|
|
||
|
class CharacterTest < ActiveSupport::TestCase
|
||
|
test "name must exist" do
|
||
|
assert_must_exist(characters(:nardren), :name)
|
||
|
end
|
||
|
end
|