(t *testing.T)
| 1000 | } |
| 1001 | |
| 1002 | func TestWriterError(t *testing.T) { |
| 1003 | r := bytes.NewBufferString("a") |
| 1004 | w := test.NewErrorWriter(0) |
| 1005 | m := minify.New() |
| 1006 | err := Minify(m, w, r, nil) |
| 1007 | test.T(t, err, test.ErrPlain) |
| 1008 | } |
| 1009 | |
| 1010 | func TestRenamerIndices(t *testing.T) { |
| 1011 | renamer := newRenamer(true, true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…