You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/spec/decorators/helpers/avatar_helper_spec.rb

25 lines
641 B
Ruby

require 'rails_helper'
describe AvatarHelper::GravatarURL do
let(:decorator) { double('decorator').extend(described_class) }
let(:model) { double('model', id: 1, username: 'satyr', email: email) }
describe '#avatar_url' do
subject { decorator.avatar_url(model) }
context "when user has an email" do
let(:email) { 'foo@email.com' }
it { should eq('//gravatar.com/avatar/9dcfeb70fe212ea12562dddd22b0fc92?s=128&d=retro') }
end
context "when user has no email" do
let(:email) { nil }
it { should eq('//gravatar.com/avatar/40affe80f7becd02ac38d316f7fe7057?s=128&d=retro') }
end
end
end