blob: be1c8a3f1623f1941dae95011d66f8884180ee9d [file] [log] [blame] [edit]
// Examples from http://josefsson.org/idn.php
extern crate stringprep;
use stringprep::nodeprep;
#[test]
fn test_nodeprep() {
assert_eq!("räksmörgås.josefsson.org", nodeprep("räksmörgås.josefßon.org").unwrap());
}