jx/internal/fan/http_test.go

14 lines
235 B
Go
Raw Normal View History

2024-04-18 00:07:12 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package fan
2024-04-18 00:07:12 +00:00
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestNewHTTPSource(t *testing.T) {
h := NewHTTP()
assert.NotNil(t, h)
}