slash roleypoly yay

This commit is contained in:
41666 2025-03-26 16:36:00 -07:00
parent 02f5075d3b
commit 607d7e121c
22 changed files with 394 additions and 66 deletions

View file

@ -15,3 +15,8 @@ func TestHeadTitle(t *testing.T) {
func TestJ(t *testing.T) {
assert.Equal(t, "/a/b/c", utils.J("a", "b", "c"))
}
func TestOr(t *testing.T) {
assert.Equal(t, "a", utils.Or("a", "b"))
assert.Equal(t, "b", utils.Or("", "b"))
}