(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestMainPumaDev_Linux(t *testing.T) { |
| 11 | appLinkDir := homedir.MustExpand("~/.puma-dev-test_linux-puma-dev") |
| 12 | |
| 13 | defer LinkAllTestApps(t, appLinkDir)() |
| 14 | |
| 15 | configureAndBootPumaDevServer(t, map[string]string{ |
| 16 | "dir": appLinkDir, |
| 17 | "http-port": "65080", |
| 18 | "https-port": "65443", |
| 19 | "no-serve-public-paths": "/packs:/config", |
| 20 | }) |
| 21 | |
| 22 | runPlatformAgnosticTestScenarios(t) |
| 23 | } |
nothing calls this directly
no test coverage detected