bea94398e8
- switch from `skeptic` to mdBook native tests - refactor `juniper_integration_tests` to be granular - make `cargo test` command fully compatible with stable Rust - adjust outdated Contribution Guide Additionally: - fix codegen tests on latest nightly Rust
9 lines
288 B
Rust
9 lines
288 B
Rust
// TODO: [Object] Type Validation: §4 (interfaces) for objects
|
||
// TODO: [Non-Null] §1 A Non‐Null type must not wrap another Non‐Null type.
|
||
|
||
#[rustversion::nightly]
|
||
#[test]
|
||
fn test_failing_compilation() {
|
||
let t = trybuild::TestCases::new();
|
||
t.compile_fail("fail/**/*.rs");
|
||
}
|