viewpoint-test-macros 0.2.13

Procedural macros for Viewpoint test framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
// Test: invalid scope value should produce compile error

use viewpoint_test_macros::test;

// This should fail to compile: "invalid" is not a valid scope
#[test(scope = "invalid")]
async fn test_invalid_scope_value(page: viewpoint_core::Page) {
    let _ = page;
}

fn main() {}