repo.or.cz
/
pyyaml
/
python3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
All tests passed! Scanner and Parser seem to be correct.
[pyyaml/python3.git]
/
tests
/
test_yaml.py
blob
c9be9dd7938660d3a678929a3b106d032d688f60
1
2
import
unittest
3
4
from
test_marker
import
*
5
from
test_canonical
import
*
6
from
test_tokens
import
*
7
from
test_structure
import
*
8
9
def
main
(
module
=
'__main__'
):
10
unittest
.
main
(
module
)
11
12
if
__name__
==
'__main__'
:
13
main
()
14