chore: add test for RegoFnOpts (#171)

This commit is contained in:
James Carnegie
2024-09-19 13:54:10 +01:00
committed by GitHub
parent be7a17f214
commit 2ace988b1c
3 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package attest
import rego.v1
success if {
some env in attest.fetch("foo")
}

View File

@@ -0,0 +1,7 @@
package attest
import rego.v1
test_sucess if {
success
}