Initial commit
This commit is contained in:
14
gezer_test.go
Normal file
14
gezer_test.go
Normal file
@ -0,0 +1,14 @@
|
||||
package gezer
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestGezer_StartURLs(t *testing.T) {
|
||||
gezer := NewGezer()
|
||||
gezer.StartURLs("https://api.ipify.org")
|
||||
for result := range gezer.Results {
|
||||
fmt.Println(string(result.Body))
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user