Files

11 lines
153 B
Go
Raw Permalink Normal View History

2026-09-02 13:32:21 +03:00
package blackout
import "testing"
func TestDisabledByDefault(t *testing.T) {
t.Parallel()
if Enabled() {
t.Fatal("blackout should start off")
}
}