1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Take a look at the license at the top of the repository in the LICENSE file.
#[cfg(test)]
mod tests {
use crate::DateTime;
use crate::ToValue;
#[test]
fn test_value() {
let dt1 = DateTime::now_utc().unwrap();
let v = dt1.to_value();
let dt2 = v.get::<&DateTime>().unwrap();
assert_eq!(dt1.as_ptr(), dt2.as_ptr());
}
}