summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_statistics.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_statistics.py')
-rw-r--r--Lib/test/test_statistics.py44
1 files changed, 0 insertions, 44 deletions
diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py
index bacb76a..ed6021d 100644
--- a/Lib/test/test_statistics.py
+++ b/Lib/test/test_statistics.py
@@ -1040,50 +1040,6 @@ class FailNegTest(unittest.TestCase):
self.assertEqual(errmsg, msg)
-class FindLteqTest(unittest.TestCase):
- # Test _find_lteq private function.
-
- def test_invalid_input_values(self):
- for a, x in [
- ([], 1),
- ([1, 2], 3),
- ([1, 3], 2)
- ]:
- with self.subTest(a=a, x=x):
- with self.assertRaises(ValueError):
- statistics._find_lteq(a, x)
-
- def test_locate_successfully(self):
- for a, x, expected_i in [
- ([1, 1, 1, 2, 3], 1, 0),
- ([0, 1, 1, 1, 2, 3], 1, 1),
- ([1, 2, 3, 3, 3], 3, 2)
- ]:
- with self.subTest(a=a, x=x):
- self.assertEqual(expected_i, statistics._find_lteq(a, x))
-
-
-class FindRteqTest(unittest.TestCase):
- # Test _find_rteq private function.
-
- def test_invalid_input_values(self):
- for a, l, x in [
- ([1], 2, 1),
- ([1, 3], 0, 2)
- ]:
- with self.assertRaises(ValueError):
- statistics._find_rteq(a, l, x)
-
- def test_locate_successfully(self):
- for a, l, x, expected_i in [
- ([1, 1, 1, 2, 3], 0, 1, 2),
- ([0, 1, 1, 1, 2, 3], 0, 1, 3),
- ([1, 2, 3, 3, 3], 0, 3, 4)
- ]:
- with self.subTest(a=a, l=l, x=x):
- self.assertEqual(expected_i, statistics._find_rteq(a, l, x))
-
-
# === Tests for public functions ===
class UnivariateCommonMixin: