Curious if anyone working through Michael Hartl's Rails Tutorial 2nd Edition approached this exercise differently. Here's what I did ...
Following the model in Listing 11.19, write tests for the stats on the profile page.
*spec/requests/user_pages_spec.rb*
describe "User pages" do
subject { page }
[ code omitted ]
describe "profile page" do
let(:user) { FactoryGirl.create(:user) }
[ code omitted ]
describe "user stats display correctly" do
let(:other_user) { FactoryGirl.create(:user) }
before do
user.follow!(other_user)
other_user.follow!(user)
visit user_path(user)
end
it { should have_selector('strong#following', text:'1') }
it { should have_selector('strong#followers', text:'1') }
describe "after unfollowing other user" do
before { user.unfollow!(other_user); visit user_path(user) }
it { should have_selector('strong#following', text: '0') }
end
describe "after unfollowed by other user" do
before { other_user.unfollow!(user); visit user_path(user) }
it { should have_selector('strong#followers', text: '0') }
end
end
end
[ code omitted ]
end
Notes:
It wasn't necessary, but I wanted to check the selectors after unfollow! in both directions, just to get more practice writing tests. Hence, the describe "after unfollowing other user" and describe "after unfollowed by other user"
Also, I realized that if you want to use before { }, with 2 statements, you must separate with a semicolon.
For example,
before { user.unfollow!(other_user); visit user_path(user) }