(t *testing.T)
| 26 | ) |
| 27 | |
| 28 | func TestMultiNodeRoomList(t *testing.T) { |
| 29 | if testing.Short() { |
| 30 | t.SkipNow() |
| 31 | return |
| 32 | } |
| 33 | _, _, finish := setupMultiNodeTest("TestMultiNodeRoomList") |
| 34 | defer finish() |
| 35 | |
| 36 | roomServiceListRoom(t) |
| 37 | } |
| 38 | |
| 39 | // update room metadata when it's empty |
| 40 | func TestMultiNodeUpdateRoomMetadata(t *testing.T) { |
nothing calls this directly
no test coverage detected