FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bpython/bpython/test/test_keys.py at windows-support · decolnz/bpython · GitHub
decolnz
/
bpython
Public
forked from
bpython/bpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
bpython
/
bpython
/
test
/
test_keys.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (31 loc) · 1.35 KB
Breadcrumbs
bpython
/
bpython
/
test
/
test_keys.py
Copy path
File metadata and controls
37 lines (31 loc) · 1.35 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
import
unittest
import
bpython
.
keys
as
keys
class
TestKeys
(
unittest
.
TestCase
):
def
test_keymap_map
(
self
):
"""Verify KeyMap.map being a dictionary with the correct
length."""
self
.
assertEqual
(
len
(
keys
.
key_dispatch
.
map
),
43
)
def
test_keymap_setitem
(
self
):
"""Verify keys.KeyMap correctly setting items."""
keys
.
key_dispatch
[
'simon'
]
=
'awesome'
;
self
.
assertEqual
(
keys
.
key_dispatch
[
'simon'
],
'awesome'
)
def
test_keymap_delitem
(
self
):
"""Verify keys.KeyMap correctly removing items."""
keys
.
key_dispatch
[
'simon'
]
=
'awesome'
del
keys
.
key_dispatch
[
'simon'
]
if
'simon'
in
keys
.
key_dispatch
.
map
:
raise
Exception
(
'Key still exists in dictionary'
)
def
test_keymap_getitem
(
self
):
"""Verify keys.KeyMap correctly looking up items."""
self
.
assertEqual
(
keys
.
key_dispatch
[
'C-['
], (
chr
(
27
),
'^['
))
self
.
assertEqual
(
keys
.
key_dispatch
[
'F11'
], (
'KEY_F(11)'
,))
self
.
assertEqual
(
keys
.
key_dispatch
[
'C-a'
], (
'
\x01
'
,
'^A'
))
def
test_keymap_keyerror
(
self
):
"""Verify keys.KeyMap raising KeyError when getting undefined key"""
def
raiser
():
keys
.
key_dispatch
[
'C-asdf'
]
keys
.
key_dispatch
[
'C-qwerty'
]
self
.
assertRaises
(
KeyError
,
raiser
);
if
__name__
==
'__main__'
:
unittest
.
main
()
Back
|
FazBrowse Home
|
New Git URL