(t *testing.T)
| 25 | } |
| 26 | |
| 27 | func TestKeyedListReadOnly(t *testing.T) { |
| 28 | b := NewBody() |
| 29 | NewKeyedList(b).SetMap(&map[string]int{"Go": 1, "C++": 3, "Python": 5}).SetReadOnly(true) |
| 30 | b.AssertRender(t, "keyed-list/read-only") |
| 31 | } |
| 32 | |
| 33 | func TestKeyedListAny(t *testing.T) { |
| 34 | b := NewBody() |
nothing calls this directly
no test coverage detected