hnbot/sn_test.go

15 lines
300 B
Go
Raw Normal View History

2023-04-16 15:53:49 +00:00
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestFetchDupes(t *testing.T) {
// TODO: mock HTTP request
url := "https://en.wikipedia.org/wiki/Dishwasher_salmon"
2023-04-16 17:56:42 +00:00
dupes := FetchStackerNewsDupes(url)
2023-04-16 15:53:49 +00:00
assert.NotEmpty(t, *dupes, "Expected at least one duplicate")
}