summaryrefslogtreecommitdiffstats
path: root/vendor/pretty_assertions-0.7.2/examples
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/pretty_assertions-0.7.2/examples')
-rw-r--r--vendor/pretty_assertions-0.7.2/examples/pretty_assertion.pngbin0 -> 21419 bytes
-rw-r--r--vendor/pretty_assertions-0.7.2/examples/pretty_assertion.rs3
-rw-r--r--vendor/pretty_assertions-0.7.2/examples/pretty_assertion_v0_6_1.pngbin0 -> 21236 bytes
-rw-r--r--vendor/pretty_assertions-0.7.2/examples/standard_assertion.pngbin0 -> 21727 bytes
-rw-r--r--vendor/pretty_assertions-0.7.2/examples/standard_assertion.rs21
5 files changed, 24 insertions, 0 deletions
diff --git a/vendor/pretty_assertions-0.7.2/examples/pretty_assertion.png b/vendor/pretty_assertions-0.7.2/examples/pretty_assertion.png
new file mode 100644
index 000000000..1e5b645f0
--- /dev/null
+++ b/vendor/pretty_assertions-0.7.2/examples/pretty_assertion.png
Binary files differ
diff --git a/vendor/pretty_assertions-0.7.2/examples/pretty_assertion.rs b/vendor/pretty_assertions-0.7.2/examples/pretty_assertion.rs
new file mode 100644
index 000000000..63246c6d7
--- /dev/null
+++ b/vendor/pretty_assertions-0.7.2/examples/pretty_assertion.rs
@@ -0,0 +1,3 @@
+use pretty_assertions::assert_eq;
+
+include!("standard_assertion.rs");
diff --git a/vendor/pretty_assertions-0.7.2/examples/pretty_assertion_v0_6_1.png b/vendor/pretty_assertions-0.7.2/examples/pretty_assertion_v0_6_1.png
new file mode 100644
index 000000000..dc192d081
--- /dev/null
+++ b/vendor/pretty_assertions-0.7.2/examples/pretty_assertion_v0_6_1.png
Binary files differ
diff --git a/vendor/pretty_assertions-0.7.2/examples/standard_assertion.png b/vendor/pretty_assertions-0.7.2/examples/standard_assertion.png
new file mode 100644
index 000000000..03ea059b7
--- /dev/null
+++ b/vendor/pretty_assertions-0.7.2/examples/standard_assertion.png
Binary files differ
diff --git a/vendor/pretty_assertions-0.7.2/examples/standard_assertion.rs b/vendor/pretty_assertions-0.7.2/examples/standard_assertion.rs
new file mode 100644
index 000000000..fddd512f4
--- /dev/null
+++ b/vendor/pretty_assertions-0.7.2/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);
+}