diff options
Diffstat (limited to 'vendor/pretty_assertions/examples')
-rw-r--r-- | vendor/pretty_assertions/examples/pretty_assertion.png | bin | 0 -> 21419 bytes | |||
-rw-r--r-- | vendor/pretty_assertions/examples/pretty_assertion.rs | 3 | ||||
-rw-r--r-- | vendor/pretty_assertions/examples/pretty_assertion_v0_6_1.png | bin | 0 -> 21236 bytes | |||
-rw-r--r-- | vendor/pretty_assertions/examples/standard_assertion.png | bin | 0 -> 21727 bytes | |||
-rw-r--r-- | vendor/pretty_assertions/examples/standard_assertion.rs | 21 |
5 files changed, 24 insertions, 0 deletions
diff --git a/vendor/pretty_assertions/examples/pretty_assertion.png b/vendor/pretty_assertions/examples/pretty_assertion.png Binary files differnew file mode 100644 index 000000000..1e5b645f0 --- /dev/null +++ b/vendor/pretty_assertions/examples/pretty_assertion.png diff --git a/vendor/pretty_assertions/examples/pretty_assertion.rs b/vendor/pretty_assertions/examples/pretty_assertion.rs new file mode 100644 index 000000000..63246c6d7 --- /dev/null +++ b/vendor/pretty_assertions/examples/pretty_assertion.rs @@ -0,0 +1,3 @@ +use pretty_assertions::assert_eq; + +include!("standard_assertion.rs"); diff --git a/vendor/pretty_assertions/examples/pretty_assertion_v0_6_1.png b/vendor/pretty_assertions/examples/pretty_assertion_v0_6_1.png Binary files differnew file mode 100644 index 000000000..dc192d081 --- /dev/null +++ b/vendor/pretty_assertions/examples/pretty_assertion_v0_6_1.png diff --git a/vendor/pretty_assertions/examples/standard_assertion.png b/vendor/pretty_assertions/examples/standard_assertion.png Binary files differnew file mode 100644 index 000000000..03ea059b7 --- /dev/null +++ b/vendor/pretty_assertions/examples/standard_assertion.png diff --git a/vendor/pretty_assertions/examples/standard_assertion.rs b/vendor/pretty_assertions/examples/standard_assertion.rs new file mode 100644 index 000000000..fddd512f4 --- /dev/null +++ b/vendor/pretty_assertions/examples/standard_assertion.rs @@ -0,0 +1,21 @@ +fn main() { + #[derive(Debug, PartialEq)] + struct Foo { + lorem: &'static str, + ipsum: u32, + dolor: Result<String, String>, + } + + let x = Some(Foo { + lorem: "Hello World!", + ipsum: 42, + dolor: Ok("hey".to_string()), + }); + let y = Some(Foo { + lorem: "Hello Wrold!", + ipsum: 42, + dolor: Ok("hey ho!".to_string()), + }); + + assert_eq!(x, y); +} |