summaryrefslogtreecommitdiffstats
path: root/vendor/pretty_assertions/examples
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:06:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:06:37 +0000
commit246f239d9f40f633160f0c18f87a20922d4e77bb (patch)
tree5a88572663584b3d4d28e5a20e10abab1be40884 /vendor/pretty_assertions/examples
parentReleasing progress-linux version 1.64.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-246f239d9f40f633160f0c18f87a20922d4e77bb.tar.xz
rustc-246f239d9f40f633160f0c18f87a20922d4e77bb.zip
Merging debian version 1.65.0+dfsg1-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/pretty_assertions/examples')
-rw-r--r--vendor/pretty_assertions/examples/pretty_assertion.pngbin0 -> 21419 bytes
-rw-r--r--vendor/pretty_assertions/examples/pretty_assertion.rs3
-rw-r--r--vendor/pretty_assertions/examples/pretty_assertion_v0_6_1.pngbin0 -> 21236 bytes
-rw-r--r--vendor/pretty_assertions/examples/standard_assertion.pngbin0 -> 21727 bytes
-rw-r--r--vendor/pretty_assertions/examples/standard_assertion.rs21
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
new file mode 100644
index 000000000..1e5b645f0
--- /dev/null
+++ b/vendor/pretty_assertions/examples/pretty_assertion.png
Binary files differ
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
new file mode 100644
index 000000000..dc192d081
--- /dev/null
+++ b/vendor/pretty_assertions/examples/pretty_assertion_v0_6_1.png
Binary files differ
diff --git a/vendor/pretty_assertions/examples/standard_assertion.png b/vendor/pretty_assertions/examples/standard_assertion.png
new file mode 100644
index 000000000..03ea059b7
--- /dev/null
+++ b/vendor/pretty_assertions/examples/standard_assertion.png
Binary files differ
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);
+}