Files
at-container-registry/pkg/labeler/config_test.go
T
2026-05-03 20:49:56 -05:00

13 lines
301 B
Go

package labeler
import "testing"
func TestConfig_PublicURL(t *testing.T) {
cfg := &Config{
Labeler: LabelerConfig{PublicURL: "https://labeler.atcr.io"},
}
if got := cfg.PublicURL(); got != "https://labeler.atcr.io" {
t.Errorf("PublicURL() = %q, want %q", got, "https://labeler.atcr.io")
}
}