2014-06-28 15:57:36 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::cmp::Ordering::{Equal, Less, Greater};
|
|
|
|
|
2014-06-28 15:57:36 -05:00
|
|
|
#[test]
|
|
|
|
fn test_clone() {
|
2015-01-25 15:05:03 -06:00
|
|
|
let a = (1, "2");
|
2014-06-28 15:57:36 -05:00
|
|
|
let b = a.clone();
|
|
|
|
assert_eq!(a, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_tuple_cmp() {
|
|
|
|
let (small, big) = ((1u, 2u, 3u), (3u, 2u, 1u));
|
|
|
|
|
|
|
|
let nan = 0.0f64/0.0;
|
|
|
|
|
|
|
|
// PartialEq
|
|
|
|
assert_eq!(small, small);
|
|
|
|
assert_eq!(big, big);
|
|
|
|
assert!(small != big);
|
|
|
|
assert!(big != small);
|
|
|
|
|
|
|
|
// PartialOrd
|
|
|
|
assert!(small < big);
|
|
|
|
assert!(!(small < small));
|
|
|
|
assert!(!(big < small));
|
|
|
|
assert!(!(big < big));
|
|
|
|
|
|
|
|
assert!(small <= small);
|
|
|
|
assert!(big <= big);
|
|
|
|
|
|
|
|
assert!(big > small);
|
|
|
|
assert!(small >= small);
|
|
|
|
assert!(big >= small);
|
|
|
|
assert!(big >= big);
|
|
|
|
|
|
|
|
assert!(!((1.0f64, 2.0f64) < (nan, 3.0)));
|
|
|
|
assert!(!((1.0f64, 2.0f64) <= (nan, 3.0)));
|
|
|
|
assert!(!((1.0f64, 2.0f64) > (nan, 3.0)));
|
|
|
|
assert!(!((1.0f64, 2.0f64) >= (nan, 3.0)));
|
|
|
|
assert!(((1.0f64, 2.0f64) < (2.0, nan)));
|
|
|
|
assert!(!((2.0f64, 2.0f64) < (2.0, nan)));
|
|
|
|
|
|
|
|
// Ord
|
|
|
|
assert!(small.cmp(&small) == Equal);
|
|
|
|
assert!(big.cmp(&big) == Equal);
|
|
|
|
assert!(small.cmp(&big) == Less);
|
|
|
|
assert!(big.cmp(&small) == Greater);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_show() {
|
2015-01-25 15:05:03 -06:00
|
|
|
let s = format!("{:?}", (1,));
|
2015-01-20 17:45:07 -06:00
|
|
|
assert_eq!(s, "(1,)");
|
2015-01-25 15:05:03 -06:00
|
|
|
let s = format!("{:?}", (1, true));
|
2015-01-20 17:45:07 -06:00
|
|
|
assert_eq!(s, "(1, true)");
|
2015-01-25 15:05:03 -06:00
|
|
|
let s = format!("{:?}", (1, "hi", true));
|
2015-01-20 17:45:07 -06:00
|
|
|
assert_eq!(s, "(1, \"hi\", true)");
|
2014-06-28 15:57:36 -05:00
|
|
|
}
|