summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/mixins
diff options
context:
space:
mode:
authorPatrick Maia <pixelated-team+patrick@thoughtworks.com>2014-08-08 17:51:33 -0300
committerPatrick Maia <patrickjourdanmaia@gmail.com>2014-08-08 17:51:33 -0300
commit97e762a0832593031ae71ab1e11d4c0e377a00f4 (patch)
tree213e835f4effbaf97f0922e5941065b1329d0501 /web-ui/test/spec/mixins
parentf22a6a32e901f52b2b3f2b3fd8625c43302ff001 (diff)
replaces Smail by Pixelated in all js files
Diffstat (limited to 'web-ui/test/spec/mixins')
-rw-r--r--web-ui/test/spec/mixins/with_mail_edit_base.spec.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/web-ui/test/spec/mixins/with_mail_edit_base.spec.js b/web-ui/test/spec/mixins/with_mail_edit_base.spec.js
index 43d3b7cd..35ec0eb6 100644
--- a/web-ui/test/spec/mixins/with_mail_edit_base.spec.js
+++ b/web-ui/test/spec/mixins/with_mail_edit_base.spec.js
@@ -1,4 +1,4 @@
-/*global Smail */
+/*global Pixelated */
/*global jasmine */
/*global runs */
/*global waits */
@@ -16,7 +16,7 @@ describeMixin('mixins/with_mail_edit_base', function () {
describe('initialization', function() {
it('should enable send button when rendering with recipients', function() {
- var enableSendButtonEvent = spyOnEvent(document, Smail.events.ui.sendbutton.enable);
+ var enableSendButtonEvent = spyOnEvent(document, Pixelated.events.ui.sendbutton.enable);
this.component.render(function() {}, {
recipients: { to: ['foobar@mail.com'], cc: [] }
@@ -26,7 +26,7 @@ describeMixin('mixins/with_mail_edit_base', function () {
});
it('should not enable send button when rendering without recipients', function() {
- var enableSendButtonEvent = spyOnEvent(document, Smail.events.ui.sendbutton.enable);
+ var enableSendButtonEvent = spyOnEvent(document, Pixelated.events.ui.sendbutton.enable);
this.component.render(function() {}, {
recipients: { to: [], cc: [] }
@@ -42,7 +42,7 @@ describeMixin('mixins/with_mail_edit_base', function () {
});
it('saves the draft after the save draft interval number of seconds', function() {
- var saveDraftSpy = spyOnEvent(document, Smail.events.mail.saveDraft);
+ var saveDraftSpy = spyOnEvent(document, Pixelated.events.mail.saveDraft);
runs(function () {
this.component.monitorInput();
expect(saveDraftSpy).not.toHaveBeenTriggeredOn(document);
@@ -54,7 +54,7 @@ describeMixin('mixins/with_mail_edit_base', function () {
});
it('does not save if mail is sent before the save draft interval number of seconds', function() {
- var saveDraftSpy = spyOnEvent(document, Smail.events.mail.saveDraft);
+ var saveDraftSpy = spyOnEvent(document, Pixelated.events.mail.saveDraft);
runs(function () {
this.component.monitorInput();
this.component.sendMail();
@@ -68,15 +68,15 @@ describeMixin('mixins/with_mail_edit_base', function () {
describe('when a mail is sent', function () {
it('displays a message of mail sent', function () {
- var spy = spyOnEvent(document, Smail.events.ui.userAlerts.displayMessage);
- this.component.trigger(document, Smail.events.mail.sent);
+ var spy = spyOnEvent(document, Pixelated.events.ui.userAlerts.displayMessage);
+ this.component.trigger(document, Pixelated.events.mail.sent);
expect(spy).toHaveBeenTriggeredOn(document);
});
});
describe('when user asks to trash the mail', function() {
it('triggers mail delete for this mail', function() {
- var spy = spyOnEvent(document, Smail.events.mail.save);
+ var spy = spyOnEvent(document, Pixelated.events.mail.save);
this.component.trashMail();
expect(spy).toHaveBeenTriggeredOn(document);
});
@@ -84,9 +84,9 @@ describeMixin('mixins/with_mail_edit_base', function () {
describe('when recipients are updated', function () {
it('triggers an event to let the send button know that the recipients in the mail are updated', function () {
- var uiMailRecipientsUpdated = spyOnEvent(document, Smail.events.ui.mail.recipientsUpdated);
+ var uiMailRecipientsUpdated = spyOnEvent(document, Pixelated.events.ui.mail.recipientsUpdated);
- $(document).trigger(Smail.events.ui.recipients.updated, {recipientsName: 'to', newRecipients: ['fox@somewhere.com']});
+ $(document).trigger(Pixelated.events.ui.recipients.updated, {recipientsName: 'to', newRecipients: ['fox@somewhere.com']});
expect(uiMailRecipientsUpdated).toHaveBeenTriggeredOn(document);
});