Merge pull request #398 from woorst/missing_bindings
set_bindings can now update or replace existing bindings
This commit is contained in:
@@ -136,9 +136,10 @@ def test_config_from_file():
|
||||
|
||||
fargs, fbindings = Config.get_file(filename=fp.name)
|
||||
config = Config(**fargs)
|
||||
default_keymap = config.keymap._keymap.copy()
|
||||
config.keymap.set_bindings(fbindings)
|
||||
assert config.config == {}
|
||||
assert config.keymap._keymap == {}
|
||||
assert config.keymap._keymap == default_keymap
|
||||
|
||||
# [rtv]
|
||||
rows = ['{0}={1}'.format(key, val) for key, val in args.items()]
|
||||
@@ -224,4 +225,4 @@ def test_config_history():
|
||||
|
||||
config.delete_history()
|
||||
assert len(config.history) == 0
|
||||
assert not os.path.exists(fp.name)
|
||||
assert not os.path.exists(fp.name)
|
||||
|
||||
@@ -370,13 +370,17 @@ def test_objects_keymap():
|
||||
keymap.get('downvote')
|
||||
assert 'DOWNVOTE' in six.text_type(e)
|
||||
|
||||
# Updating the bindings wipes out the old ones
|
||||
bindings = {'refresh': ['a', 0x12, '<LF>', '<KEY_UP>']}
|
||||
bindings2 = {'upvote': ['b', 0x13, '<KEY_DOWN>']}
|
||||
keymap._keymap = {}
|
||||
keymap.set_bindings(bindings)
|
||||
assert keymap.get('refresh')
|
||||
with pytest.raises(exceptions.ConfigError) as e:
|
||||
keymap.get('upvote')
|
||||
assert 'UPVOTE' in six.text_type(e)
|
||||
keymap.set_bindings(bindings2)
|
||||
assert keymap.get('refresh')
|
||||
assert keymap.get('upvote')
|
||||
|
||||
# Strings should be parsed correctly into keys
|
||||
assert KeyMap.parse('a') == 97
|
||||
@@ -589,4 +593,4 @@ def test_objects_navigator_flip():
|
||||
nav.flip(3)
|
||||
assert nav.page_index == 2
|
||||
assert nav.cursor_index == 3
|
||||
assert not nav.inverted
|
||||
assert not nav.inverted
|
||||
|
||||
Reference in New Issue
Block a user