Fix repeated concat output buffer duplicating layout markup (#29918)
This commit is contained in:
parent
20b1e55f24
commit
449f99e168
2 changed files with 10 additions and 4 deletions
|
@ -9,12 +9,18 @@ describe 'The account show page' do
|
|||
|
||||
get '/@alice'
|
||||
|
||||
expect(head_link_icons.size).to eq(4) # One general favicon and three with sizes
|
||||
|
||||
expect(head_meta_content('og:title')).to match alice.display_name
|
||||
expect(head_meta_content('og:type')).to eq 'profile'
|
||||
expect(head_meta_content('og:image')).to match '.+'
|
||||
expect(head_meta_content('og:url')).to match 'http://.+'
|
||||
end
|
||||
|
||||
def head_link_icons
|
||||
head_section.css('link[rel=icon]')
|
||||
end
|
||||
|
||||
def head_meta_content(property)
|
||||
head_section.meta("[@property='#{property}']")[:content]
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue