master
1require "rails_helper"
2
3describe "adding a cake to your favorites" do
4 let!(:creation) { create(:creation, user: create(:user), photos: [create(:photo)]) }
5 let!(:me) { create(:user, password: "password") }
6
7 before { http_login(me) }
8
9 it "redirects you to the cake after" do
10 visit root_path
11 click_link(creation.name[0...12])
12 click_link_or_button("add-to-favorites-button")
13 expect(page).to have_content("This has been added to your favorites")
14 end
15end