tabletop-companion/test/models/dice_roll_test.rb

10 lines
187 B
Ruby
Raw Permalink Normal View History

2024-06-13 07:41:45 +00:00
# frozen_string_literal: true
require "test_helper"
class DiceRollTest < ActiveSupport::TestCase
test "result must exist" do
assert_must_exist dice_rolls(:one), :result
end
end