Commit 681e40db by Jay Zoldak

Merge pull request #960 from edx/zoldak/remove-unimplemented-steps

Remove unimplemented steps from certificates acceptance test code
parents 24df5523 cfe4e46a
...@@ -218,26 +218,3 @@ def leave_the_flow_and_return(step): ...@@ -218,26 +218,3 @@ def leave_the_flow_and_return(step):
@step(u'I am at the verified page$') @step(u'I am at the verified page$')
def see_the_payment_page(step): def see_the_payment_page(step):
assert world.css_find('button#pay_button') assert world.css_find('button#pay_button')
@step(u'I press the payment button')
def press_payment_button(step):
assert False, 'This step must be implemented'
@step(u'I have submitted face and ID photos')
def submitted_face_and_id_photos(step):
assert False, 'This step must be implemented'
@step(u'I edit my name')
def edit_my_name(step):
assert False, 'This step must be implemented'
@step(u'I see the new name on the confirmation page.')
def sesee_the_new_name_on_the_confirmation_page(step):
assert False, 'This step must be implemented'
@step(u'I have submitted photos')
def submitted_photos(step):
assert False, 'This step must be implemented'
@step(u'I am registered for the course')
def seam_registered_for_the_course(step):
assert False, 'This step must be implemented'
@step(u'I return to the student dashboard')
def return_to_the_student_dashboard(step):
assert False, 'This step must be implemented'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment