-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions_test.go
36 lines (29 loc) · 874 Bytes
/
options_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package ebird
import (
"testing"
)
func TestProcessOptions(t *testing.T) {
t.Run("Back", func(t *testing.T) {
options := Back(15)
requestOptions := processOptions(options)
if requestOptions.URLParams.Get("back") != "15" {
t.Error("Back option not set correctly")
}
})
t.Run("Cat", func(t *testing.T) {
options := Cat("bird")
requestOptions := processOptions(options)
if requestOptions.URLParams.Get("cat") != "bird" {
t.Error("Cat option not set correctly")
}
})
t.Run("Multiple Options", func(t *testing.T) {
options := []RequestOption{Back(10), Cat("sparrow"), Dist(50)}
requestOptions := processOptions(options...)
if requestOptions.URLParams.Get("back") != "10" ||
requestOptions.URLParams.Get("cat") != "sparrow" ||
requestOptions.URLParams.Get("dist") != "50" {
t.Error("Multiple options not set correctly")
}
})
}