(t *testing.T)
| 16 | } |
| 17 | |
| 18 | func TestParseFSListArgsRejectsInvalidJSON(t *testing.T) { |
| 19 | assertFSListInvalidArguments(t, json.RawMessage(`"bad"`)) |
| 20 | } |
| 21 | |
| 22 | func TestParseFSListArgs(t *testing.T) { |
| 23 | args, err := parseFSListArgs(json.RawMessage(`{"path":"/movies","password":"secret","refresh":true,"page":2,"per_page":10}`)) |
nothing calls this directly
no test coverage detected