diff options
author | hut <hut@lavabit.com> | 2010-08-29 19:16:57 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-08-29 19:16:57 +0200 |
commit | ec823be00aa7175ebcb836a240a20f6389159c2e (patch) | |
tree | 24fe7386e630acf7ccf7903c09f252b434aee18a /test/tc_newkeys.py | |
parent | fd29d7e6bb22d6176717ac5dc9e3c8f88009732b (diff) | |
download | ranger-ec823be00aa7175ebcb836a240a20f6389159c2e.tar.gz |
Removed symlink in test/
Diffstat (limited to 'test/tc_newkeys.py')
-rw-r--r-- | test/tc_newkeys.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/tc_newkeys.py b/test/tc_newkeys.py index fd856f17..c9597201 100644 --- a/test/tc_newkeys.py +++ b/test/tc_newkeys.py @@ -12,7 +12,13 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import os.path +import sys +rangerpath = os.path.join(os.path.dirname(__file__), '..') +if sys.path[1] != rangerpath: + sys.path[1:1] = [rangerpath] +sys.path[1:1] = ['..'] from unittest import TestCase, main @@ -22,8 +28,6 @@ from ranger.container.keymap import * from ranger.container.keybuffer import KeyBuffer from ranger.ext.keybinding_parser import parse_keybinding -import sys - def simulate_press(self, string): for char in parse_keybinding(string): self.add(char) |