fn ion_hash_string()

in amazon-qldb-driver-core/src/ion_compat.rs [96:100]


    fn ion_hash_string() {
        let expected = hex!("82c4010bfc9cace7f645c0a951243b9b122cb5ba21b60b3f71ea79c513c39342");
        let computed = ion_hash("hello world");
        assert_eq!(expected, &computed[..]);
    }