Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Unified expandable panels with mermaid flows, ZIP export, connection tests, and Playwright smoke coverage.
10 lines
192 B
Go
10 lines
192 B
Go
package cloudmap
|
|
|
|
import "testing"
|
|
|
|
func TestSeederDNSName(t *testing.T) {
|
|
if got := SeederDNSName("seeder", "prod.local"); got != "seeder.svc.prod.local" {
|
|
t.Fatalf("got %q", got)
|
|
}
|
|
}
|