Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
edx
edx-platform
Commits
412e6d34
Commit
412e6d34
authored
Jul 23, 2014
by
Ned Batchelder
Committed by
Anurag Ramdasan
Jul 24, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a more informative assert to a lettuce helper
parent
d9bb2868
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
common/djangoapps/terrain/steps.py
+3
-1
No files found.
common/djangoapps/terrain/steps.py
View file @
412e6d34
...
...
@@ -81,7 +81,9 @@ def click_the_link_with_the_text_group1(step, linktext):
@step
(
'I should see that the path is "([^"]*)"$'
)
def
i_should_see_that_the_path_is
(
step
,
path
):
assert
world
.
url_equals
(
path
)
assert
world
.
url_equals
(
path
),
(
"path should be {!r} but is {!r}"
.
format
(
path
,
world
.
browser
.
url
)
)
@step
(
u'the page title should be "([^"]*)"$'
)
...
...
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