Skip to content

Instantly share code, notes, and snippets.

@ToadJamb
Created June 28, 2013 18:49
Show Gist options
  • Save ToadJamb/5887060 to your computer and use it in GitHub Desktop.
Save ToadJamb/5887060 to your computer and use it in GitHub Desktop.
# spec/features/root_spec.rb
require_relative '../spec_helper'
describe 'Root Path' do
describe 'GET /' do
before { get '/' }
it 'is successful' do
expect(last_response.status).to eq 200
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment