mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-09-20 09:14:16 +00:00
14 lines
227 B
Go
14 lines
227 B
Go
package holdhealth
|
|
|
|
import "testing"
|
|
|
|
func TestWorker_Struct(t *testing.T) {
|
|
// Simple struct test
|
|
worker := &Worker{}
|
|
if worker == nil {
|
|
t.Error("Expected non-nil worker")
|
|
}
|
|
}
|
|
|
|
// TODO: Add background health check tests
|