summaryrefslogtreecommitdiff
path: root/internal/fetch/fetch_test.go
blob: 427406dc546b3375c2c2d86d6ba0fc97ba21cb7d (plain)
1
2
3
4
5
6
7
8
9
10
package fetch

import "testing"

func TestFetch(t *testing.T) {
	_, err := fetch("http://example.com", 2)
	if err != nil {
		t.Error(err)
	}
}