FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bpython/bpython/test/test_curtsies_parser.py at reloading-sys · LongJohnCoder/bpython · GitHub
LongJohnCoder
/
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
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
bpython
/
bpython
/
test
/
test_curtsies_parser.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (16 loc) · 879 Bytes
Breadcrumbs
bpython
/
bpython
/
test
/
test_curtsies_parser.py
Copy path
File metadata and controls
22 lines (16 loc) · 879 Bytes
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
from
__future__
import
unicode_literals
from
bpython
.
test
import
unittest
from
bpython
.
curtsiesfrontend
import
parse
from
curtsies
.
fmtfuncs
import
yellow
,
cyan
,
green
,
bold
class
TestExecArgs
(
unittest
.
TestCase
):
def
test_parse
(
self
):
self
.
assertEquals
(
parse
.
parse
(
'
\x01
y
\x03
print
\x04
'
),
yellow
(
'print'
))
self
.
assertEquals
(
parse
.
parse
(
'
\x01
y
\x03
print
\x04
\x01
c
\x03
\x04
\x01
g
\x03
1
\x04
\x01
c'
'
\x03
\x04
\x01
Y
\x03
+
\x04
\x01
c
\x03
\x04
\x01
g
\x03
2
\x04
'
),
yellow
(
'print'
)
+
cyan
(
' '
)
+
green
(
'1'
)
+
cyan
(
' '
)
+
bold
(
yellow
(
'+'
))
+
cyan
(
' '
)
+
green
(
u'2'
))
def
test_peal_off_string
(
self
):
self
.
assertEquals
(
parse
.
peel_off_string
(
'
\x01
RI
\x03
]
\x04
asdf'
),
({
'bg'
:
'I'
,
'string'
:
']'
,
'fg'
:
'R'
,
'colormarker'
:
'
\x01
RI'
,
'bold'
:
''
},
'asdf'
))
Back
|
FazBrowse Home
|
New Git URL