Built motion from commit 4e0bcdd.|0.0.104
[motion.git] / server / api / freshdesk_field / index.spec.js
index b5c0fb8..2b180b3 100644 (file)
@@ -1,97 +1 @@
-'use strict';
-
-var proxyquire = require('proxyquire').noPreserveCache();
-
-var freshdeskFieldCtrlStub = {
-  index: 'freshdeskFieldCtrl.index',
-  show: 'freshdeskFieldCtrl.show',
-  create: 'freshdeskFieldCtrl.create',
-  update: 'freshdeskFieldCtrl.update',
-  destroy: 'freshdeskFieldCtrl.destroy'
-};
-
-var routerStub = {
-  get: sinon.spy(),
-  put: sinon.spy(),
-  patch: sinon.spy(),
-  post: sinon.spy(),
-  delete: sinon.spy()
-};
-
-// require the index with our stubbed out modules
-var freshdeskFieldIndex = proxyquire('./index.js', {
-  'express': {
-    Router: function() {
-      return routerStub;
-    }
-  },
-  './freshdesk_field.controller': freshdeskFieldCtrlStub
-});
-
-describe('FreshdeskField API Router:', function() {
-
-  it('should return an express router instance', function() {
-    expect(freshdeskFieldIndex).to.equal(routerStub);
-  });
-
-  describe('GET /api/freshdesk/fields', function() {
-
-    it('should route to freshdeskField.controller.index', function() {
-      expect(routerStub.get
-        .withArgs('/', 'freshdeskFieldCtrl.index')
-        ).to.have.been.calledOnce;
-    });
-
-  });
-
-  describe('GET /api/freshdesk/fields/:id', function() {
-
-    it('should route to freshdeskField.controller.show', function() {
-      expect(routerStub.get
-        .withArgs('/:id', 'freshdeskFieldCtrl.show')
-        ).to.have.been.calledOnce;
-    });
-
-  });
-
-  describe('POST /api/freshdesk/fields', function() {
-
-    it('should route to freshdeskField.controller.create', function() {
-      expect(routerStub.post
-        .withArgs('/', 'freshdeskFieldCtrl.create')
-        ).to.have.been.calledOnce;
-    });
-
-  });
-
-  describe('PUT /api/freshdesk/fields/:id', function() {
-
-    it('should route to freshdeskField.controller.update', function() {
-      expect(routerStub.put
-        .withArgs('/:id', 'freshdeskFieldCtrl.update')
-        ).to.have.been.calledOnce;
-    });
-
-  });
-
-  describe('PATCH /api/freshdesk/fields/:id', function() {
-
-    it('should route to freshdeskField.controller.update', function() {
-      expect(routerStub.patch
-        .withArgs('/:id', 'freshdeskFieldCtrl.update')
-        ).to.have.been.calledOnce;
-    });
-
-  });
-
-  describe('DELETE /api/freshdesk/fields/:id', function() {
-
-    it('should route to freshdeskField.controller.destroy', function() {
-      expect(routerStub.delete
-        .withArgs('/:id', 'freshdeskFieldCtrl.destroy')
-        ).to.have.been.calledOnce;
-    });
-
-  });
-
-});
+var _0xc009=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6E\x6F\x50\x72\x65\x73\x65\x72\x76\x65\x43\x61\x63\x68\x65","\x70\x72\x6F\x78\x79\x71\x75\x69\x72\x65","\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x43\x74\x72\x6C\x2E\x69\x6E\x64\x65\x78","\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x43\x74\x72\x6C\x2E\x73\x68\x6F\x77","\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x43\x74\x72\x6C\x2E\x63\x72\x65\x61\x74\x65","\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x43\x74\x72\x6C\x2E\x75\x70\x64\x61\x74\x65","\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x43\x74\x72\x6C\x2E\x64\x65\x73\x74\x72\x6F\x79","\x73\x70\x79","\x2E\x2F\x69\x6E\x64\x65\x78\x2E\x6A\x73","\x46\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x20\x41\x50\x49\x20\x52\x6F\x75\x74\x65\x72\x3A","\x73\x68\x6F\x75\x6C\x64\x20\x72\x65\x74\x75\x72\x6E\x20\x61\x6E\x20\x65\x78\x70\x72\x65\x73\x73\x20\x72\x6F\x75\x74\x65\x72\x20\x69\x6E\x73\x74\x61\x6E\x63\x65","\x65\x71\x75\x61\x6C","\x74\x6F","\x47\x45\x54\x20\x2F\x61\x70\x69\x2F\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x2F\x66\x69\x65\x6C\x64\x73","\x73\x68\x6F\x75\x6C\x64\x20\x72\x6F\x75\x74\x65\x20\x74\x6F\x20\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x2E\x63\x6F\x6E\x74\x72\x6F\x6C\x6C\x65\x72\x2E\x69\x6E\x64\x65\x78","\x63\x61\x6C\x6C\x65\x64\x4F\x6E\x63\x65","\x62\x65\x65\x6E","\x68\x61\x76\x65","\x2F","\x77\x69\x74\x68\x41\x72\x67\x73","\x67\x65\x74","\x47\x45\x54\x20\x2F\x61\x70\x69\x2F\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x2F\x66\x69\x65\x6C\x64\x73\x2F\x3A\x69\x64","\x73\x68\x6F\x75\x6C\x64\x20\x72\x6F\x75\x74\x65\x20\x74\x6F\x20\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x2E\x63\x6F\x6E\x74\x72\x6F\x6C\x6C\x65\x72\x2E\x73\x68\x6F\x77","\x2F\x3A\x69\x64","\x50\x4F\x53\x54\x20\x2F\x61\x70\x69\x2F\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x2F\x66\x69\x65\x6C\x64\x73","\x73\x68\x6F\x75\x6C\x64\x20\x72\x6F\x75\x74\x65\x20\x74\x6F\x20\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x2E\x63\x6F\x6E\x74\x72\x6F\x6C\x6C\x65\x72\x2E\x63\x72\x65\x61\x74\x65","\x70\x6F\x73\x74","\x50\x55\x54\x20\x2F\x61\x70\x69\x2F\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x2F\x66\x69\x65\x6C\x64\x73\x2F\x3A\x69\x64","\x73\x68\x6F\x75\x6C\x64\x20\x72\x6F\x75\x74\x65\x20\x74\x6F\x20\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x2E\x63\x6F\x6E\x74\x72\x6F\x6C\x6C\x65\x72\x2E\x75\x70\x64\x61\x74\x65","\x70\x75\x74","\x50\x41\x54\x43\x48\x20\x2F\x61\x70\x69\x2F\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x2F\x66\x69\x65\x6C\x64\x73\x2F\x3A\x69\x64","\x70\x61\x74\x63\x68","\x44\x45\x4C\x45\x54\x45\x20\x2F\x61\x70\x69\x2F\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x2F\x66\x69\x65\x6C\x64\x73\x2F\x3A\x69\x64","\x73\x68\x6F\x75\x6C\x64\x20\x72\x6F\x75\x74\x65\x20\x74\x6F\x20\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x46\x69\x65\x6C\x64\x2E\x63\x6F\x6E\x74\x72\x6F\x6C\x6C\x65\x72\x2E\x64\x65\x73\x74\x72\x6F\x79","\x64\x65\x6C\x65\x74\x65"];_0xc009[0];var proxyquire=require(_0xc009[2])[_0xc009[1]]();var freshdeskFieldCtrlStub={index:_0xc009[3],show:_0xc009[4],create:_0xc009[5],update:_0xc009[6],destroy:_0xc009[7]};var routerStub={get:sinon[_0xc009[8]](),put:sinon[_0xc009[8]](),patch:sinon[_0xc009[8]](),post:sinon[_0xc009[8]](),delete:sinon[_0xc009[8]]()};var freshdeskFieldIndex=proxyquire(_0xc009[9],{"\x65\x78\x70\x72\x65\x73\x73":{Router:function(){return routerStub}},"\x2E\x2F\x66\x72\x65\x73\x68\x64\x65\x73\x6B\x5F\x66\x69\x65\x6C\x64\x2E\x63\x6F\x6E\x74\x72\x6F\x6C\x6C\x65\x72":freshdeskFieldCtrlStub});describe(_0xc009[10],function(){it(_0xc009[11],function(){expect(freshdeskFieldIndex)[_0xc009[13]][_0xc009[12]](routerStub)});describe(_0xc009[14],function(){it(_0xc009[15],function(){expect(routerStub[_0xc009[21]][_0xc009[20]](_0xc009[19],_0xc009[3]))[_0xc009[13]][_0xc009[18]][_0xc009[17]][_0xc009[16]]})});describe(_0xc009[22],function(){it(_0xc009[23],function(){expect(routerStub[_0xc009[21]][_0xc009[20]](_0xc009[24],_0xc009[4]))[_0xc009[13]][_0xc009[18]][_0xc009[17]][_0xc009[16]]})});describe(_0xc009[25],function(){it(_0xc009[26],function(){expect(routerStub[_0xc009[27]][_0xc009[20]](_0xc009[19],_0xc009[5]))[_0xc009[13]][_0xc009[18]][_0xc009[17]][_0xc009[16]]})});describe(_0xc009[28],function(){it(_0xc009[29],function(){expect(routerStub[_0xc009[30]][_0xc009[20]](_0xc009[24],_0xc009[6]))[_0xc009[13]][_0xc009[18]][_0xc009[17]][_0xc009[16]]})});describe(_0xc009[31],function(){it(_0xc009[29],function(){expect(routerStub[_0xc009[32]][_0xc009[20]](_0xc009[24],_0xc009[6]))[_0xc009[13]][_0xc009[18]][_0xc009[17]][_0xc009[16]]})});describe(_0xc009[33],function(){it(_0xc009[34],function(){expect(routerStub[_0xc009[35]][_0xc009[20]](_0xc009[24],_0xc009[7]))[_0xc009[13]][_0xc009[18]][_0xc009[17]][_0xc009[16]]})})})
\ No newline at end of file