Skip to content

Instantly share code, notes, and snippets.

@naichilab
Created January 21, 2016 11:34
Show Gist options
  • Save naichilab/e0fb5f93570410cbde08 to your computer and use it in GitHub Desktop.
Save naichilab/e0fb5f93570410cbde08 to your computer and use it in GitHub Desktop.
exampleをまとめる方法
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