Created
February 15, 2012 23:06
-
-
Save ono/1839889 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe "#section_tabs", js: true do | |
| include_context "logged in and selected a course" | |
| it "switches learning path and all lessons" do | |
| visit dv_lessons_path | |
| # Shows learning path on default | |
| find('#section_learning_path').should be_visible | |
| find('#section_all').should_not be_visible | |
| page.click_link "All Lessons" | |
| # Switches to all lessons | |
| find('#section_learning_path').should be_visible | |
| find('#section_all').should_not be_visible | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment