Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
cd3e219c
Commit
cd3e219c
authored
Jan 23, 2006
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use unittest and make sure a few other cases don't crash
parent
8ac83f31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
Lib/test/test_symtable.py
Lib/test/test_symtable.py
+23
-2
No files found.
Lib/test/test_symtable.py
View file @
cd3e219c
from
test
.test_support
import
vereq
,
TestFailed
from
test
import
test_support
import
symtable
import
unittest
symbols
=
symtable
.
symtable
(
"def f(x): return x"
,
"?"
,
"exec"
)
## XXX
## Test disabled because symtable module needs to be rewritten for new compiler
...
...
@@ -21,3 +21,24 @@ symbols = symtable.symtable("def f(x): return x", "?", "exec")
## raise TestFailed("no SyntaxError for %r" % (brokencode,))
##checkfilename("def f(x): foo)(") # parse-time
##checkfilename("def f(x): global x") # symtable-build-time
class
SymtableTest
(
unittest
.
TestCase
):
def
test_invalid_args
(
self
):
self
.
assertRaises
(
TypeError
,
symtable
.
symtable
,
"42"
)
self
.
assertRaises
(
ValueError
,
symtable
.
symtable
,
"42"
,
"?"
,
""
)
def
test_eval
(
self
):
symbols
=
symtable
.
symtable
(
"42"
,
"?"
,
"eval"
)
def
test_single
(
self
):
symbols
=
symtable
.
symtable
(
"42"
,
"?"
,
"single"
)
def
test_exec
(
self
):
symbols
=
symtable
.
symtable
(
"def f(x): return x"
,
"?"
,
"exec"
)
def
test_main
():
test_support
.
run_unittest
(
SymtableTest
)
if
__name__
==
'__main__'
:
test_main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment