mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-08-31 23:16:53 +00:00
14 lines
240 B
Go
14 lines
240 B
Go
package jetstream
|
|
|
|
import "testing"
|
|
|
|
func TestWorker_Struct(t *testing.T) {
|
|
// Simple struct test
|
|
worker := &Worker{}
|
|
if worker == nil {
|
|
t.Error("Expected non-nil worker")
|
|
}
|
|
}
|
|
|
|
// TODO: Add WebSocket connection tests with mock server
|