debian-mirror-gitlab/spec/helpers/groups_helper_spec.rb

22 lines
619 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require 'spec_helper'
describe GroupsHelper do
describe 'group_icon' do
2015-09-11 14:41:01 +05:30
avatar_file_path = File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif')
2015-04-26 12:48:37 +05:30
2016-09-13 17:45:13 +05:30
it 'returns an url for the avatar' do
2015-04-26 12:48:37 +05:30
group = create(:group)
group.avatar = File.open(avatar_file_path)
group.save!
expect(group_icon(group.path).to_s).
2015-12-23 02:04:40 +05:30
to match("/uploads/group/avatar/#{group.id}/banana_sample.gif")
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
it 'gives default avatar_icon when no avatar is present' do
2015-04-26 12:48:37 +05:30
group = create(:group)
group.save!
expect(group_icon(group.path)).to match('group_avatar.png')
end
end
end