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
f9708e52
Commit
f9708e52
authored
May 16, 2011
by
Yuest Wang
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1 from markpasc/master
Test for inverted sections with lists
parents
de9f7d41
a78d3f65
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
+14
-1
examples/inverted.py
+9
-0
tests/test_view.py
+5
-1
No files found.
examples/inverted.py
View file @
f9708e52
...
...
@@ -11,3 +11,12 @@ class Inverted(pystache.View):
def
two
(
self
):
return
'two'
class
InvertedLists
(
Inverted
):
template_name
=
'inverted'
def
t
(
self
):
return
[
0
,
1
,
2
]
def
f
(
self
):
return
[]
tests/test_view.py
View file @
f9708e52
...
...
@@ -4,7 +4,7 @@ import pystache
from
examples.simple
import
Simple
from
examples.complex_view
import
ComplexView
from
examples.lambdas
import
Lambdas
from
examples.inverted
import
Inverted
from
examples.inverted
import
Inverted
,
InvertedLists
class
TestView
(
unittest
.
TestCase
):
def
test_basic
(
self
):
...
...
@@ -90,6 +90,10 @@ class TestView(unittest.TestCase):
view
=
Inverted
()
self
.
assertEquals
(
view
.
render
(),
"""one, two, three"""
)
def
test_inverted_lists
(
self
):
view
=
InvertedLists
()
self
.
assertEquals
(
view
.
render
(),
"""one, two, three"""
)
if
__name__
==
'__main__'
:
unittest
.
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