1
1
Fork 0
mirror of https://github.com/OJ/gobuster.git synced 2024-05-06 11:16:05 +02:00
gobuster/gobusterfuzz/options_test.go
Christian Mehlmauer 1577321686
apply 3.1 changed
2020-05-08 10:59:45 +02:00

13 lines
211 B
Go

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