mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
cb0b3a1790
Authored by anakrish and mingweishih Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
26 lines
327 B
Rego
26 lines
327 B
Rego
package test
|
|
|
|
no_assign {
|
|
input.date == "12/1/2022"
|
|
}
|
|
|
|
assign_null = null {
|
|
input.date == "12/1/2022"
|
|
}
|
|
|
|
assign_bool = false {
|
|
input.date == "12/1/2022"
|
|
}
|
|
|
|
assign_int = 101 {
|
|
input.date == "12/1/2022"
|
|
}
|
|
|
|
assign_float = 3.14 {
|
|
input.date == "12/1/2022"
|
|
}
|
|
|
|
assign_string = "test_string" {
|
|
input.date == "12/1/2022"
|
|
}
|