Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pystache_custom
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pystache_custom
Commits
65e347a9
Commit
65e347a9
authored
Dec 21, 2011
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renamed template.py to renderer.py.
parent
b6018af6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
15 deletions
+15
-15
pystache/commands.py
+1
-1
pystache/init.py
+1
-1
pystache/renderer.py
+0
-0
pystache/view.py
+1
-1
tests/test_pystache.py
+6
-6
tests/test_renderer.py
+6
-6
No files found.
pystache/commands.py
View file @
65e347a9
...
...
@@ -20,7 +20,7 @@ import sys
# ValueError: Attempted relative import in non-package
#
from
pystache.loader
import
Loader
from
pystache.
template
import
Template
from
pystache.
renderer
import
Template
USAGE
=
"""
\
...
...
pystache/init.py
View file @
65e347a9
...
...
@@ -5,7 +5,7 @@ This module contains the initialization logic called by __init__.py.
"""
from
.
template
import
Template
from
.
renderer
import
Template
from
.view
import
View
from
.loader
import
Loader
...
...
pystache/
template
.py
→
pystache/
renderer
.py
View file @
65e347a9
File moved
pystache/view.py
View file @
65e347a9
...
...
@@ -10,7 +10,7 @@ from types import UnboundMethodType
from
.context
import
Context
from
.loader
import
Loader
from
.
template
import
Template
from
.
renderer
import
Template
class
View
(
object
):
...
...
tests/test_pystache.py
View file @
65e347a9
...
...
@@ -2,7 +2,7 @@
import
unittest
import
pystache
from
pystache
import
template
from
pystache
import
renderer
class
PystacheTests
(
object
):
...
...
@@ -114,16 +114,16 @@ class PystacheWithoutMarkupsafeTests(PystacheTests, unittest.TestCase):
"""Test pystache without markupsafe enabled."""
def
setUp
(
self
):
self
.
original_markupsafe
=
template
.
markupsafe
template
.
markupsafe
=
None
self
.
original_markupsafe
=
renderer
.
markupsafe
renderer
.
markupsafe
=
None
def
tearDown
(
self
):
template
.
markupsafe
=
self
.
original_markupsafe
renderer
.
markupsafe
=
self
.
original_markupsafe
# If markupsafe is available, then run the same tests again but without
# disabling markupsafe.
_BaseClass
=
unittest
.
TestCase
if
template
.
markupsafe
else
object
_BaseClass
=
unittest
.
TestCase
if
renderer
.
markupsafe
else
object
class
PystacheWithMarkupsafeTests
(
PystacheTests
,
_BaseClass
):
"""Test pystache with markupsafe enabled."""
...
...
@@ -132,5 +132,5 @@ class PystacheWithMarkupsafeTests(PystacheTests, _BaseClass):
non_strings_expected
=
"""(123 & ['something'])(chris & 0.9)"""
def
test_markupsafe_available
(
self
):
self
.
assertTrue
(
template
.
markupsafe
,
"markupsafe isn't available. "
self
.
assertTrue
(
renderer
.
markupsafe
,
"markupsafe isn't available. "
"The with-markupsafe tests shouldn't be running."
)
tests/test_
template
.py
→
tests/test_
renderer
.py
View file @
65e347a9
...
...
@@ -9,8 +9,8 @@ import codecs
import
sys
import
unittest
from
pystache
import
template
from
pystache.
template
import
Template
from
pystache
import
renderer
from
pystache.
renderer
import
Template
class
TemplateTestCase
(
unittest
.
TestCase
):
...
...
@@ -22,8 +22,8 @@ class TemplateTestCase(unittest.TestCase):
Disable markupsafe.
"""
self
.
original_markupsafe
=
template
.
markupsafe
template
.
markupsafe
=
None
self
.
original_markupsafe
=
renderer
.
markupsafe
renderer
.
markupsafe
=
None
def
tearDown
(
self
):
self
.
_restore_markupsafe
()
...
...
@@ -36,7 +36,7 @@ class TemplateTestCase(unittest.TestCase):
Restore markupsafe to its original state.
"""
template
.
markupsafe
=
self
.
original_markupsafe
renderer
.
markupsafe
=
self
.
original_markupsafe
def
test__was_markupsafe_imported
(
self
):
"""
...
...
@@ -141,7 +141,7 @@ class TemplateTestCase(unittest.TestCase):
# Check the standard case.
actual
=
_template
.
literal
(
"abc"
)
self
.
assertEquals
(
actual
,
"abc"
)
self
.
assertEquals
(
type
(
actual
),
template
.
markupsafe
.
Markup
)
self
.
assertEquals
(
type
(
actual
),
renderer
.
markupsafe
.
Markup
)
s
=
"é"
# Check that markupsafe respects default_encoding.
...
...
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