Commit 76e67b2d authored by Rémy Coutable's avatar Rémy Coutable

Fix spec/helpers/groups_helper_spec.rb

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 25dd237b
...@@ -73,12 +73,12 @@ describe GroupsHelper do ...@@ -73,12 +73,12 @@ describe GroupsHelper do
it 'returns an url for the avatar pointing to the primary node base url' do it 'returns an url for the avatar pointing to the primary node base url' do
group.avatar = fixture_file_upload(avatar_file_path) group.avatar = fixture_file_upload(avatar_file_path)
group.save! group.save!
expect(group_icon(group.path).to_s).to match("#{geo_url}/uploads/-/system/group/avatar/#{group.id}/banana_sample.gif") expect(group_icon_url(group.path)).to match("#{geo_url}/uploads/-/system/group/avatar/#{group.id}/banana_sample.gif")
end end
it 'gives default avatar_icon when no avatar is present' do it 'gives default avatar_icon when no avatar is present' do
group.save! group.save!
expect(group_icon(group.path)).to match_asset_path('no_group_avatar.png') expect(group_icon_url(group.path)).to match_asset_path('no_group_avatar.png')
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment