Skip to content

Instantly share code, notes, and snippets.

@dkissell
Created August 16, 2011 04:41
Show Gist options
  • Save dkissell/1148445 to your computer and use it in GitHub Desktop.
Save dkissell/1148445 to your computer and use it in GitHub Desktop.
RSpec: static test
require 'spec_helper'
describe HomeController do
describe "GET 'home'" do
it "should serve 'home' from index.html.erb" do
get 'index'
response.should be_success
end
end
describe "GET 'about'" do
it "should serve 'about'" do
get 'about'
response.should be_success
end
end
describe "GET 'tests'" do
it "should serve 'tests'" do
get 'tests'
response.should be_success
end
end
describe "GET 'contact'" do
it "should serve 'contact'" do
get 'contact'
response.should be_success
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment