(t *testing.T)
| 628 | } |
| 629 | |
| 630 | func mustStaticFS(t *testing.T) fs.FS { |
| 631 | t.Helper() |
| 632 | |
| 633 | staticFS, err := newStaticFS() |
| 634 | if err != nil { |
| 635 | t.Fatalf("newStaticFS() error = %v", err) |
| 636 | } |
| 637 | |
| 638 | return staticFS.fs |
| 639 | } |
| 640 | |
| 641 | func newTestHomePaths(t *testing.T) aghconfig.HomePaths { |
| 642 | t.Helper() |
no test coverage detected