(t *testing.T)
| 67 | } |
| 68 | |
| 69 | func TestPlayPathEmptyFileError(t *testing.T) { |
| 70 | m := new(mocks.Client) |
| 71 | err := PlayPath(m, "./test-fixtures/empty.contents") |
| 72 | assert.EqualError(t, err, "unable to read line from path: ./test-fixtures/empty.contents") |
| 73 | } |
| 74 | |
| 75 | func TestPlayUriNoUriError(t *testing.T) { |
| 76 | m := new(mocks.Client) |
nothing calls this directly
no test coverage detected