summaryrefslogtreecommitdiffstats
path: root/third_party/rust/base64/tests/helpers.rs
blob: 51449884483e5353b767675ce86a4f580a196c59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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()
    );
}