package globals_test import ( "testing" "sneak.berlin/go/webhooker/internal/globals" ) func TestGlobalsFields(t *testing.T) { t.Parallel() g := &globals.Globals{ Appname: "test-app", Version: "1.0.0", } if g.Appname != "test-app" { t.Errorf( "Appname = %v, want %v", g.Appname, "test-app", ) } if g.Version != "1.0.0" { t.Errorf( "Version = %v, want %v", g.Version, "1.0.0", ) } }