mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-09-03 00:36:56 +00:00
13 lines
243 B
Go
13 lines
243 B
Go
package jetstream
|
|
|
|
import "testing"
|
|
|
|
func TestBackfillWorker_Struct(t *testing.T) {
|
|
backfiller := &BackfillWorker{}
|
|
if backfiller == nil {
|
|
t.Error("Expected non-nil backfiller")
|
|
}
|
|
}
|
|
|
|
// TODO: Add backfill tests with mocked ATProto client
|