Go binary/server for helping run/build sessions for the Maze Rats TTRPG
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
381 B

package tables
import (
"mazeratsgen/internal/dice"
. "mazeratsgen/test/helpers"
"testing"
)
func TestWildMethods(t *testing.T) {
roller := dice.NewRoller(1)
WildTable{Roller: roller}.WildernessRegion(roller.TableRoll())
}
func TestMethods(t *testing.T) {
roller := dice.NewRoller(1)
ExactItem(WildTable{Roller: roller}.WildernessRegion([2]int{5, 2}), "Rainforest", t)
}