mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
Run rustfmt on the new changes.
This commit is contained in:
parent
f9bcb58eb3
commit
2a84352d1d
@ -165,52 +165,72 @@ where
|
||||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
use super::{make_diff,Mismatch};
|
||||
use super::{make_diff, Mismatch};
|
||||
use super::DiffLine::*;
|
||||
|
||||
#[test]
|
||||
fn diff_simple() {
|
||||
let src = "one\ntwo\nthree\nfour\nfive\n";
|
||||
let dest= "one\ntwo\ntrois\nfour\nfive\n";
|
||||
let dest = "one\ntwo\ntrois\nfour\nfive\n";
|
||||
let diff = make_diff(src, dest, 1);
|
||||
assert_eq!(diff, vec![Mismatch { line_number: 2,
|
||||
lines: vec![
|
||||
Context("two".into()),
|
||||
Resulting("three".into()),
|
||||
Expected("trois".into()),
|
||||
Context("four".into()),
|
||||
] }]);
|
||||
assert_eq!(
|
||||
diff,
|
||||
vec![
|
||||
Mismatch {
|
||||
line_number: 2,
|
||||
lines: vec![
|
||||
Context("two".into()),
|
||||
Resulting("three".into()),
|
||||
Expected("trois".into()),
|
||||
Context("four".into()),
|
||||
],
|
||||
},
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn diff_simple2() {
|
||||
let src = "one\ntwo\nthree\nfour\nfive\nsix\nseven\n";
|
||||
let dest= "one\ntwo\ntrois\nfour\ncinq\nsix\nseven\n";
|
||||
let dest = "one\ntwo\ntrois\nfour\ncinq\nsix\nseven\n";
|
||||
let diff = make_diff(src, dest, 1);
|
||||
assert_eq!(diff, vec![Mismatch { line_number: 2,
|
||||
lines: vec![
|
||||
Context("two".into()),
|
||||
Resulting("three".into()),
|
||||
Expected("trois".into()),
|
||||
Context("four".into()),
|
||||
] },
|
||||
Mismatch { line_number: 5,
|
||||
lines: vec![
|
||||
Resulting("five".into()),
|
||||
Expected("cinq".into()),
|
||||
Context("six".into()),
|
||||
] }]);
|
||||
assert_eq!(
|
||||
diff,
|
||||
vec![
|
||||
Mismatch {
|
||||
line_number: 2,
|
||||
lines: vec![
|
||||
Context("two".into()),
|
||||
Resulting("three".into()),
|
||||
Expected("trois".into()),
|
||||
Context("four".into()),
|
||||
],
|
||||
},
|
||||
Mismatch {
|
||||
line_number: 5,
|
||||
lines: vec![
|
||||
Resulting("five".into()),
|
||||
Expected("cinq".into()),
|
||||
Context("six".into()),
|
||||
],
|
||||
},
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn diff_zerocontext() {
|
||||
let src = "one\ntwo\nthree\nfour\nfive\n";
|
||||
let dest= "one\ntwo\ntrois\nfour\nfive\n";
|
||||
let dest = "one\ntwo\ntrois\nfour\nfive\n";
|
||||
let diff = make_diff(src, dest, 0);
|
||||
assert_eq!(diff, vec![Mismatch { line_number: 3,
|
||||
lines: vec![
|
||||
Resulting("three".into()),
|
||||
Expected("trois".into()),
|
||||
] }]);
|
||||
assert_eq!(
|
||||
diff,
|
||||
vec![
|
||||
Mismatch {
|
||||
line_number: 3,
|
||||
lines: vec![Resulting("three".into()), Expected("trois".into())],
|
||||
},
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user