(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestNewExternalAuth(t *testing.T) { |
| 13 | t.Parallel() |
| 14 | |
| 15 | app, _ := tests.NewTestApp() |
| 16 | defer app.Cleanup() |
| 17 | |
| 18 | ea := core.NewExternalAuth(app) |
| 19 | |
| 20 | if ea.Collection().Name != core.CollectionNameExternalAuths { |
| 21 | t.Fatalf("Expected record with %q collection, got %q", core.CollectionNameExternalAuths, ea.Collection().Name) |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | func TestExternalAuthProxyRecord(t *testing.T) { |
| 26 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…