You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
654 B

require 'rails_helper'
describe "accounts/show.html.haml" do
it "has an h-feed with correct number of h-entry objects in it" do
alice = Fabricate(:account, username: 'alice', display_name: 'Alice')
status = Fabricate(:status, account: alice, text: 'Hello World')
status2 = Fabricate(:status, account: alice, text: 'Hello World Again')
status3 = Fabricate(:status, account: alice, text: 'Are You Still There World?')
assign(:account, alice)
assign(:statuses, alice.statuses)
render(:template => 'accounts/show.html.haml')
expect(Nokogiri::HTML(rendered).search('.h-feed .h-entry').size).to eq 3
end
end