We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5443c96 commit a593227Copy full SHA for a593227
prql-compiler/tests/docs/main.rs
@@ -52,6 +52,7 @@ fn website_hero_example() -> String {
52
fn test_readme_examples() {
53
let contents = fs::read_to_string("../README.md").unwrap();
54
let re = Regex::new(r"(?s)```(elm|prql)\n(?P<prql>.+?)\n```").unwrap();
55
+ assert_ne!(re.find_iter(&contents).count(), 0);
56
for cap in re.captures_iter(&contents) {
57
let prql = &cap["prql"];
58
compile(prql).unwrap();
0 commit comments