10 lines
187 B
Ruby
10 lines
187 B
Ruby
|
# 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
|