Created
November 2, 2013 22:50
-
-
Save lucasallan/7284363 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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