Created
August 24, 2010 15:21
-
-
Save graemenelson/547720 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 'test_helper' | |
| class Devise::RegistrationsControllerTest < ActionController::TestCase | |
| context "edit without authenticate account" do | |
| setup do | |
| sign_out :account | |
| get :edit | |
| end | |
| should redirect_to("new account session path") { new_account_session_path } | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment