Skip to content

Instantly share code, notes, and snippets.

@denysonique
Created July 23, 2011 03:46
Show Gist options
  • Save denysonique/1100977 to your computer and use it in GitHub Desktop.
Save denysonique/1100977 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe ProfileController do
include Devise::TestHelpers
before(:each) do
@user = Factory.create(:user)
sign_in @user
end
describe "GET /profile" do
it "should work" do
get '/profile'
response.status.should be(200)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment