Skip to content

Instantly share code, notes, and snippets.

@ono
Created February 15, 2012 23:06
Show Gist options
  • Select an option

  • Save ono/1839889 to your computer and use it in GitHub Desktop.

Select an option

Save ono/1839889 to your computer and use it in GitHub Desktop.
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