summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCyril Plisko <cyril.plisko@mountall.com>2017-12-11 21:42:33 +0200
committerCyril Plisko <cyril.plisko@mountall.com>2017-12-11 21:43:23 +0200
commite6b3f1caaf6f95619b52d498e86c3da03a3ca10e (patch)
treee5f490207d6bd9cd9c18b31764c2f15c5f5a4bc1 /tests
parent177ddf19770c7453f8e4de16d1b39e610faf248a (diff)
Drop 'Pager::force_on_notty()'
Diffstat (limited to 'tests')
-rw-r--r--tests/pager.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/pager.rs b/tests/pager.rs
index 8cc8a3c..3c53dfe 100644
--- a/tests/pager.rs
+++ b/tests/pager.rs
@@ -19,10 +19,3 @@ fn skip_on_notty() {
pager.setup();
assert!(!pager.is_on());
}
-
-#[test]
-fn force_on_notty() {
- let mut pager = Pager::new().force_on_notty();
- pager.setup();
- assert!(pager.is_on());
-}