Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
713b5dcf
Commit
713b5dcf
authored
Jul 10, 2006
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the new reST tests clearer in intent.
parent
b55c9294
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
8 deletions
+28
-8
lib/python/Products/ZReST/tests/test_ZReST.py
lib/python/Products/ZReST/tests/test_ZReST.py
+14
-4
lib/python/reStructuredText/tests/testReST.py
lib/python/reStructuredText/tests/testReST.py
+14
-4
No files found.
lib/python/Products/ZReST/tests/test_ZReST.py
View file @
713b5dcf
...
...
@@ -64,22 +64,32 @@ class TestZReST(unittest.TestCase):
self
.
assertEqual
(
'<html'
in
html
,
True
)
self
.
assertEqual
(
'<body>'
in
html
,
True
)
def
test
FileInclusion
(
self
):
def
test
_include_directive_raises
(
self
):
resty
=
self
.
_makeOne
()
resty
.
source
=
'hello world
\
n
.. include:: /etc/passwd'
self
.
assertRaises
(
NotImplementedError
,
resty
.
render
)
def
test_raw_directive_disabled
(
self
):
def
testRawPassthrough
(
self
):
EXPECTED
=
'<h1>HELLO WORLD</h1>'
resty
=
self
.
_makeOne
()
resty
.
source
=
'.. raw:: html
\
n
<h1>HELLO WORLD</h1>'
result
=
resty
.
render
()
# should not fail
resty
.
source
=
'.. raw:: html
\
n
\
n
%s
\
n
'
%
EXPECTED
result
=
resty
.
render
()
# don't raise, but don't work either
self
.
failIf
(
EXPECTED
in
result
)
self
.
failUnless
(
""raw" directive disabled"
in
result
)
from
cgi
import
escape
self
.
failUnless
(
escape
(
EXPECTED
)
in
result
)
def
test_raw_directive_file_directive_raises
(
self
):
resty
=
self
.
_makeOne
()
resty
.
source
=
'.. raw:: html
\
n
:file: inclusion.txt'
self
.
assertRaises
(
NotImplementedError
,
resty
.
render
)
def
test_raw_directive_url_directive_raises
(
self
):
resty
=
self
.
_makeOne
()
resty
.
source
=
'.. raw:: html
\
n
:url: http://www.zope.org/'
self
.
assertRaises
(
NotImplementedError
,
resty
.
render
)
...
...
lib/python/reStructuredText/tests/testReST.py
View file @
713b5dcf
...
...
@@ -82,19 +82,29 @@ text
self
.
assertEquals
(
output
,
expected
)
def
test
FileInclusion
(
self
):
def
test
_include_directive_raises
(
self
):
source
=
'hello world
\
n
.. include:: /etc/passwd'
self
.
assertRaises
(
NotImplementedError
,
HTML
,
source
)
def
test_raw_directive_disabled
(
self
):
def
testRawPassthrough
(
self
):
EXPECTED
=
'<h1>HELLO WORLD</h1>'
source
=
'.. raw:: html
\
n
<h1>HELLO WORLD</h1>'
result
=
HTML
(
source
)
# don't raise
source
=
'.. raw:: html
\
n
\
n
%s
\
n
'
%
EXPECTED
result
=
HTML
(
source
)
# don't raise, but don't work either
self
.
failIf
(
EXPECTED
in
result
)
self
.
failUnless
(
""raw" directive disabled"
in
result
)
from
cgi
import
escape
self
.
failUnless
(
escape
(
EXPECTED
)
in
result
)
def
test_raw_directive_file_option_raises
(
self
):
source
=
'.. raw:: html
\
n
:file: inclusion.txt'
self
.
assertRaises
(
NotImplementedError
,
HTML
,
source
)
def
test_raw_directive_url_option_raises
(
self
):
source
=
'.. raw:: html
\
n
:url: http://www.zope.org'
self
.
assertRaises
(
NotImplementedError
,
HTML
,
source
)
...
...
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