unbound_exporter/unbound_exporter_test.go
Phil Porada 209c3cbdd4
Fix lints, add testing file, and update go mod and sum files (#28)
* Fix lint errors. Includes PR #25 and PR #23
2021-11-17 14:32:28 -05:00

10 lines
165 B
Go

package main
import "testing"
func TestStub(t *testing.T) {
if 1 != 1 { //nolint
t.Fatal("Math is a lie. We should never have taught computers to think.")
}
}