Files
regorus/tests/tests.rs
Anand Krishnamoorthi a75f7c51df OPA conformance tests (#45)
Run regorus against OPA test suite.

To run full test suite:
  cargo test --test opa

To run specific folder (e.g semver):
  cargo test --test opa -- semver

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
2023-11-15 17:09:53 -08:00

9 lines
142 B
Rust

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
mod interpreter;
mod lexer;
mod parser;
mod scheduler;
mod value;