proxy-pool/internal/domain/extraction/extraction_test.go
youfak 4de3ffb85f
Some checks are pending
ci / test (ubuntu-latest) (push) Waiting to run
ci / test (windows-latest) (push) Waiting to run
ci / race (push) Waiting to run
feat: add ephemeral proxy activity pool
2026-07-29 12:51:18 +08:00

13 lines
337 B
Go

package extraction
import "testing"
func TestWireValuesRemainStable(t *testing.T) {
if Partial != "partial" || AllOrNothing != "allOrNothing" {
t.Fatalf("fulfillment values = %q, %q", Partial, AllOrNothing)
}
if Available != "AVAILABLE" || Extracted != "EXTRACTED" {
t.Fatalf("state values = %q, %q", Available, Extracted)
}
}