mirror of
https://github.com/OJ/gobuster.git
synced 2025-09-23 06:37:40 +02:00
13 lines
207 B
Go
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")
|
|
}
|
|
}
|