2015-08-13 15:46:00 +02:00
|
|
|
/// test the multiline-trim function
|
2016-08-17 18:35:25 +02:00
|
|
|
extern crate clippy_lints;
|
2015-08-13 15:46:00 +02:00
|
|
|
|
2016-08-17 18:35:25 +02:00
|
|
|
use clippy_lints::utils::trim_multiline;
|
2015-08-13 15:46:00 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_single_line() {
|
|
|
|
assert_eq!("", trim_multiline("".into(), false));
|
|
|
|
assert_eq!("...", trim_multiline("...".into(), false));
|
|
|
|
assert_eq!("...", trim_multiline(" ...".into(), false));
|
|
|
|
assert_eq!("...", trim_multiline("\t...".into(), false));
|
|
|
|
assert_eq!("...", trim_multiline("\t\t...".into(), false));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2016-12-20 10:20:41 +01:00
|
|
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
2015-08-13 15:46:00 +02:00
|
|
|
fn test_block() {
|
|
|
|
assert_eq!("\
|
|
|
|
if x {
|
|
|
|
y
|
|
|
|
} else {
|
|
|
|
z
|
|
|
|
}", trim_multiline(" if x {
|
|
|
|
y
|
|
|
|
} else {
|
|
|
|
z
|
|
|
|
}".into(), false));
|
|
|
|
assert_eq!("\
|
|
|
|
if x {
|
|
|
|
\ty
|
|
|
|
} else {
|
|
|
|
\tz
|
|
|
|
}", trim_multiline(" if x {
|
|
|
|
\ty
|
|
|
|
} else {
|
|
|
|
\tz
|
|
|
|
}".into(), false));
|
|
|
|
}
|
2015-08-13 15:48:48 +02:00
|
|
|
|
|
|
|
#[test]
|
2016-12-20 10:20:41 +01:00
|
|
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
2015-08-13 15:48:48 +02:00
|
|
|
fn test_empty_line() {
|
|
|
|
assert_eq!("\
|
|
|
|
if x {
|
|
|
|
y
|
|
|
|
|
|
|
|
} else {
|
|
|
|
z
|
|
|
|
}", trim_multiline(" if x {
|
|
|
|
y
|
|
|
|
|
|
|
|
} else {
|
|
|
|
z
|
|
|
|
}".into(), false));
|
|
|
|
}
|