diff options
author | hut <hut@lavabit.com> | 2010-04-14 20:01:47 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-14 20:01:47 +0200 |
commit | ef18cd85cd48117dd8bd36325887bb2a7cc49653 (patch) | |
tree | ca320ae025cc0426527f62b27c08ebbc406b0590 /test/tc_direction.py | |
parent | 681d9f6adf185f1c3adf0801da3d3baac99e1ea7 (diff) | |
parent | 5a8c735198079d928a7611b1f9c5aa7bf6d62a1e (diff) | |
download | ranger-ef18cd85cd48117dd8bd36325887bb2a7cc49653.tar.gz |
Merge branch 'newkey' into devel
Diffstat (limited to 'test/tc_direction.py')
-rw-r--r-- | test/tc_direction.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/tc_direction.py b/test/tc_direction.py index 18f9eb4c..124a7001 100644 --- a/test/tc_direction.py +++ b/test/tc_direction.py @@ -76,6 +76,13 @@ class TestDirections(unittest.TestCase): d2 = Direction(absolute=True) self.assertEqual(5, d2.move(direction=9, override=5)) + def test_select(self): + d = Direction(down=3) + lst = list(range(100)) + self.assertEqual((6, [3,4,5]), d.select(current=3, pagesize=10, override=None, lst=lst)) + d = Direction(down=3, pages=True) + self.assertEqual((9, [3,4,5,6,7,8]), d.select(current=3, pagesize=2, override=None, lst=lst)) + if __name__ == '__main__': unittest.main() |