1
1
mirror of https://github.com/OJ/gobuster.git synced 2025-09-23 06:37:40 +02:00
gobuster/gobusterfuzz/options_test.go
2023-08-31 18:40:56 +02:00

13 lines
207 B
Go

package gobusterfuzz
import "testing"
func TestNewOptions(t *testing.T) {
t.Parallel()
o := NewOptions()
if o.ExcludedStatusCodesParsed.Set == nil {
t.Fatal("StatusCodesParsed not initialized")
}
}