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
9b00a932
Commit
9b00a932
authored
Apr 07, 2012
by
Chris Jerdonek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test runner no longer errors out if spec tests not found.
parent
e92e9b3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
pystache/tests/test_spec.py
+10
-3
No files found.
pystache/tests/test_spec.py
View file @
9b00a932
...
@@ -31,15 +31,22 @@ from pystache.tests.common import AssertStringMixin, SPEC_TEST_DIR
...
@@ -31,15 +31,22 @@ from pystache.tests.common import AssertStringMixin, SPEC_TEST_DIR
spec_paths
=
glob
.
glob
(
os
.
path
.
join
(
SPEC_TEST_DIR
,
'*.json'
))
spec_paths
=
glob
.
glob
(
os
.
path
.
join
(
SPEC_TEST_DIR
,
'*.json'
))
if
len
(
spec_paths
)
==
0
:
raise
Exception
(
"""Spec tests not found in:
%
s
# This test case lets us alert the user that spec tests are missing.
Consult the README file on how to add the spec tests."""
%
repr
(
SPEC_TEST_DIR
))
class
CheckSpecTestsFound
(
unittest
.
TestCase
):
def
test_spec_tests_exist
(
self
):
if
len
(
spec_paths
)
>
0
:
return
raise
Exception
(
"Spec tests not found in:
%
s
\n
"
"Consult the README file on how to add the Mustache spec tests."
%
repr
(
SPEC_TEST_DIR
))
# TODO: give this a name better than MustacheSpec.
# TODO: give this a name better than MustacheSpec.
class
MustacheSpec
(
unittest
.
TestCase
,
AssertStringMixin
):
class
MustacheSpec
(
unittest
.
TestCase
,
AssertStringMixin
):
pass
pass
def
buildTest
(
testData
,
spec_filename
):
def
buildTest
(
testData
,
spec_filename
):
name
=
testData
[
'name'
]
name
=
testData
[
'name'
]
...
...
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