mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Set up some trybuild tests
This commit is contained in:
parent
ab48dd19d3
commit
39d2ae53ba
8 changed files with 53 additions and 0 deletions
|
@ -14,6 +14,8 @@ thiserror-impl = { version = "=1.0.0", path = "impl" }
|
|||
|
||||
[dev-dependencies]
|
||||
anyhow = "1.0"
|
||||
rustversion = "1.0"
|
||||
trybuild = "1.0"
|
||||
|
||||
[workspace]
|
||||
members = ["impl"]
|
||||
|
|
6
tests/compiletest.rs
Normal file
6
tests/compiletest.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
#[rustversion::attr(not(nightly), ignore)]
|
||||
#[test]
|
||||
fn ui() {
|
||||
let t = trybuild::TestCases::new();
|
||||
t.compile_fail("tests/ui/*.rs");
|
||||
}
|
8
tests/ui/duplicate-fmt.rs
Normal file
8
tests/ui/duplicate-fmt.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error("...")]
|
||||
#[error("...")]
|
||||
pub struct Error;
|
||||
|
||||
fn main() {}
|
5
tests/ui/duplicate-fmt.stderr
Normal file
5
tests/ui/duplicate-fmt.stderr
Normal file
|
@ -0,0 +1,5 @@
|
|||
error: only one #[error(...)] attribute is allowed
|
||||
--> $DIR/duplicate-fmt.rs:5:1
|
||||
|
|
||||
5 | #[error("...")]
|
||||
| ^^^^^^^^^^^^^^^
|
10
tests/ui/missing-fmt.rs
Normal file
10
tests/ui/missing-fmt.rs
Normal file
|
@ -0,0 +1,10 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
pub enum Error {
|
||||
#[error("...")]
|
||||
A(usize),
|
||||
B(usize),
|
||||
}
|
||||
|
||||
fn main() {}
|
5
tests/ui/missing-fmt.stderr
Normal file
5
tests/ui/missing-fmt.stderr
Normal file
|
@ -0,0 +1,5 @@
|
|||
error: missing #[error("...")] display attribute
|
||||
--> $DIR/missing-fmt.rs:7:5
|
||||
|
|
||||
7 | B(usize),
|
||||
| ^^^^^^^^
|
9
tests/ui/union.rs
Normal file
9
tests/ui/union.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error)]
|
||||
pub union U {
|
||||
msg: &'static str,
|
||||
num: usize,
|
||||
}
|
||||
|
||||
fn main() {}
|
8
tests/ui/union.stderr
Normal file
8
tests/ui/union.stderr
Normal file
|
@ -0,0 +1,8 @@
|
|||
error: union as errors are not supported
|
||||
--> $DIR/union.rs:4:1
|
||||
|
|
||||
4 | / pub union U {
|
||||
5 | | msg: &'static str,
|
||||
6 | | num: usize,
|
||||
7 | | }
|
||||
| |_^
|
Loading…
Add table
Add a link
Reference in a new issue