tabletop-companion/test/models/game_system_test.rb

10 lines
191 B
Ruby

# frozen_string_literal: true
require "test_helper"
class GameSystemTest < ActiveSupport::TestCase
test "name must exist" do
assert_must_exist(game_systems(:troika), :name)
end
end