Skip to content

Instantly share code, notes, and snippets.

@lucasallan
Created November 2, 2013 22:50
Show Gist options
  • Save lucasallan/7284363 to your computer and use it in GitHub Desktop.
Save lucasallan/7284363 to your computer and use it in GitHub Desktop.
require 'spec_helper'
include Warden::Test::Helpers
describe "UserDashboards" do
before(:each) do
@user = Factory.create(:user)
login_as @user, :scope => :user
end
it "should access dashboard" do
visit users_dashboard_path
page.should have_content("dashboard")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment