Skip to content

Instantly share code, notes, and snippets.

@knewter
Created March 21, 2013 02:38
Show Gist options
  • Save knewter/5210298 to your computer and use it in GitHub Desktop.
Save knewter/5210298 to your computer and use it in GitHub Desktop.
totes runs
require 'spec_helper'
describe "Pages Interface" do
describe "GET /backend/pages" do
it "shows a list of pages" do
# create some pages
visit abc_backend.pages_path
within('h2') do
page.should have_content("Pages")
end
within('a') do
page.should have_content("First Page")
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment