2024-04-18 00:07:12 +00:00
|
|
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
|
2024-09-19 08:03:23 +00:00
|
|
|
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)
|
|
|
|
}
|