Skip to content

Instantly share code, notes, and snippets.

@greggroth
Created August 28, 2012 15:08
Show Gist options
  • Save greggroth/3498908 to your computer and use it in GitHub Desktop.
Save greggroth/3498908 to your computer and use it in GitHub Desktop.
describe "Search courses" do
it "by topic" do
240.times { Course.create! }
Course.create!(topic: "biology", name: "A001")
Course.create!(topic: "biology", name: "B205")
visit search_path
fill_in "Search", with: "biology"
click_button "Search"
page.should have_content "A001"
page.should have_content "B205"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment