]> git.proxmox.com Git - rustc.git/blobdiff - vendor/base64/tests/helpers.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / vendor / base64 / tests / helpers.rs
diff --git a/vendor/base64/tests/helpers.rs b/vendor/base64/tests/helpers.rs
new file mode 100644 (file)
index 0000000..5144988
--- /dev/null
@@ -0,0 +1,14 @@
+extern crate base64;
+
+use base64::*;
+
+pub fn compare_decode(expected: &str, target: &str) {
+    assert_eq!(
+        expected,
+        String::from_utf8(decode(target).unwrap()).unwrap()
+    );
+    assert_eq!(
+        expected,
+        String::from_utf8(decode(target.as_bytes()).unwrap()).unwrap()
+    );
+}