about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-12-27 23:41:04 +0100
committerhut <hut@lavabit.com>2009-12-27 23:41:04 +0100
commita666f32b959416d062ac38645dc27f20686d881b (patch)
tree0acfc2fbc7633f4bc8323bb0d251a95229839638
parent70aec44f8b5fb168e5f10fbeec332be75f0d67f0 (diff)
downloadranger-a666f32b959416d062ac38645dc27f20686d881b.tar.gz
test case for keyapi.Wrapper
-rw-r--r--test/tc_keyapi.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/tc_keyapi.py b/test/tc_keyapi.py
new file mode 100644
index 00000000..f1067e26
--- /dev/null
+++ b/test/tc_keyapi.py
@@ -0,0 +1,24 @@
+if __name__ == '__main__': from __init__ import init; init()
+
+from unittest import TestCase, main
+
+class Test(TestCase):
+	def test_wrapper(self):
+		from ranger.keyapi import Wrapper
+
+		class dummyfm(object):
+			def move(relative):
+				return "I move down by {0}".format(relative)
+
+		class commandarg(object):
+			def __init__(self):
+				self.fm = dummyfm
+
+		arg = commandarg()
+
+		do = Wrapper('fm')
+		command = do.move(relative=4)
+
+		self.assertEqual(command(arg), 'I move down by 4')
+
+if __name__ == '__main__': main()