Created
August 28, 2014 02:27
Revisions
-
mockra created this gist
Aug 28, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ 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', '[email protected]'); }); this.append(); equal(find('img').attr('src'), 'http://www.gravatar.com/avatar/' + window.md5('[email protected]') + '?s=400'); });