spec/helpers/user_helper_spec.rb [17:26]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      let (:avatar_url) { "#{base_url}?s=40&d=mm" }

      it 'should return gravatar with default size' do
        expect(user_avatar_url(user)).to eq "#{base_url}?s=40&d=identicon"
      end

      it 'should return gravatar with custom size' do
        expect(user_avatar_url(user, 120)).to eq "#{base_url}?s=120&d=identicon"
      end
    end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/helpers/user_helper_spec.rb [30:39]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      let (:avatar_url) { "#{base_url}?s=40&d=mm" }

      it 'should return gravatar with default size' do
        expect(user_avatar_url(user)).to eq "#{base_url}?s=40&d=identicon"
      end

      it 'should return gravatar with custom size' do
        expect(user_avatar_url(user, 120)).to eq "#{base_url}?s=120&d=identicon"
      end
    end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



