diff options
author | hut <hut@lavabit.com> | 2010-04-13 17:57:46 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-13 17:57:46 +0200 |
commit | 447cbcd65588eafdb85b407750602c0fdd591ef4 (patch) | |
tree | 22d9bdbe6481a945dba0e57c6f9f2b9639fe0a94 /test/tc_direction.py | |
parent | d492db527bd0a610bef85682615de2c25d5145d6 (diff) | |
download | ranger-447cbcd65588eafdb85b407750602c0fdd591ef4.tar.gz |
dirarg: added unit test and almost working implementaiton
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() |