Skip to content

Instantly share code, notes, and snippets.

@mockra
Created August 28, 2014 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mockra/7af2d94cee1e571a00b8 to your computer and use it in GitHub Desktop.
Save mockra/7af2d94cee1e571a00b8 to your computer and use it in GitHub Desktop.
import { test, moduleForComponent } from 'ember-qunit';
moduleForComponent('gravatar-image', 'GravatarImageComponent', {
});
test('it renders with size and e-mail', function() {
var component = this.subject();
Ember.run(function(){
component.set('size', 400);
component.set('email', 'test@example.com');
});
this.append();
equal(find('img').attr('src'),
'http://www.gravatar.com/avatar/' +
window.md5('test@example.com') +
'?s=400');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment