summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLawrence Chou <lawrencechou1024@gmail.com>2018-10-19 08:55:50 +0800
committerDavid Peter <sharkdp@users.noreply.github.com>2018-10-19 21:04:46 +0200
commit88fcfd76aa98633d16a0b6470b51f073b5d8ef87 (patch)
tree2bdabbffae9590af97f237a8eafcb34f9f2f6892 /tests
parent76e34b29ecbc65aef29cc0bf73912607041f6031 (diff)
cargo fmt
Diffstat (limited to 'tests')
-rw-r--r--tests/integration_tests.rs42
1 files changed, 28 insertions, 14 deletions
diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs
index fe7b960b..4edc072e 100644
--- a/tests/integration_tests.rs
+++ b/tests/integration_tests.rs
@@ -105,7 +105,8 @@ fn tabs_numbers() {
.arg("--decorations=always")
.assert()
.success()
- .stdout(" 1 1 2 3 4
+ .stdout(
+ " 1 1 2 3 4
2 1 ?
3 22 ?
4 333 ?
@@ -114,7 +115,8 @@ fn tabs_numbers() {
7 666666 ?
8 7777777 ?
9 88888888 ?
-");
+",
+ );
}
#[test]
@@ -126,7 +128,8 @@ fn tabs_passthrough_wrapped() {
.arg("--decorations=always")
.assert()
.success()
- .stdout(" 1 2 3 4
+ .stdout(
+ " 1 2 3 4
1 ?
22 ?
333 ?
@@ -135,7 +138,8 @@ fn tabs_passthrough_wrapped() {
666666 ?
7777777 ?
88888888 ?
-");
+",
+ );
}
#[test]
@@ -147,7 +151,8 @@ fn tabs_4_wrapped() {
.arg("--decorations=always")
.assert()
.success()
- .stdout(" 1 2 3 4
+ .stdout(
+ " 1 2 3 4
1 ?
22 ?
333 ?
@@ -156,7 +161,8 @@ fn tabs_4_wrapped() {
666666 ?
7777777 ?
88888888 ?
-");
+",
+ );
}
#[test]
@@ -168,7 +174,8 @@ fn tabs_8_wrapped() {
.arg("--decorations=always")
.assert()
.success()
- .stdout(" 1 2 3 4
+ .stdout(
+ " 1 2 3 4
1 ?
22 ?
333 ?
@@ -177,7 +184,8 @@ fn tabs_8_wrapped() {
666666 ?
7777777 ?
88888888 ?
-");
+",
+ );
}
#[test]
@@ -189,7 +197,8 @@ fn tabs_passthrough() {
.arg("--decorations=always")
.assert()
.success()
- .stdout(" 1 2 3 4
+ .stdout(
+ " 1 2 3 4
1 ?
22 ?
333 ?
@@ -198,7 +207,8 @@ fn tabs_passthrough() {
666666 ?
7777777 ?
88888888 ?
-");
+",
+ );
}
#[test]
@@ -210,7 +220,8 @@ fn tabs_4() {
.arg("--decorations=always")
.assert()
.success()
- .stdout(" 1 2 3 4
+ .stdout(
+ " 1 2 3 4
1 ?
22 ?
333 ?
@@ -219,7 +230,8 @@ fn tabs_4() {
666666 ?
7777777 ?
88888888 ?
-");
+",
+ );
}
#[test]
@@ -231,7 +243,8 @@ fn tabs_8() {
.arg("--decorations=always")
.assert()
.success()
- .stdout(" 1 2 3 4
+ .stdout(
+ " 1 2 3 4
1 ?
22 ?
333 ?
@@ -240,7 +253,8 @@ fn tabs_8() {
666666 ?
7777777 ?
88888888 ?
-");
+",
+ );
}
#[test]