MCPcopy Create free account
hub / github.com/dagger/dagger / equalLockInputs

Function equalLockInputs

core/integration/lockfile_test.go:580–590  ·  view source on GitHub ↗
(actual, expected []any)

Source from the content-addressed store, hash-verified

578}
579
580func equalLockInputs(actual, expected []any) bool {
581 if len(actual) != len(expected) {
582 return false
583 }
584 for i := range actual {
585 if actual[i] != expected[i] {
586 return false
587 }
588 }
589 return true
590}
591
592func startModuleResolveGitService(ctx context.Context, t *testctx.T, c *dagger.Client) (*dagger.Service, string) {
593 t.Helper()

Callers 2

assertGitLockEntryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected