Created
January 19, 2016 06:15
-
-
Save JunichiIto/a47e5b615ceb3b8698ec to your computer and use it in GitHub Desktop.
This file contains 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
context '有効なパラメータの場合' do | |
before do | |
@user = attributes_for(:user) | |
end | |
it '正しく登録されること' do | |
expect{ | |
post :create, user: @user | |
}.to change(User, :count).by(1) | |
expect(response.status).to eq 302 | |
expect(response).to redirect_to root_path | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment