(t *testing.T)
| 96 | } |
| 97 | |
| 98 | func TestNew_CyclicReferenceError(t *testing.T) { |
| 99 | testFS := createTestFS(testFile{"parse.html", `{{partial "parse.html"}}`}) |
| 100 | |
| 101 | if _, err := New(testFS); err == nil { |
| 102 | t.Errorf("New() expected error, got nil %v", err) |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | func TestNew_Ext(t *testing.T) { |
| 107 | testFS := createTestFS( |
nothing calls this directly
no test coverage detected