| Total Complexity | 4 |
| Complexity/F | 1 |
| Lines of Code | 33 |
| Function Count | 4 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | var chai = require('chai'); |
||
| 2 | |||
| 3 | var config = require('../src/cli').config |
||
| 4 | config.set({root: __dirname + '/fixtures'}) |
||
|
|
|||
| 5 | |||
| 6 | var cmsData = require('../src/cli').cmsData; |
||
| 7 | var Manager = require('../src/cli').Manager; |
||
| 8 | var fse = require('fs-extra'); |
||
| 9 | |||
| 10 | describe('Request', function() { |
||
| 11 | before( function(done) { |
||
| 12 | Manager.instance.init() |
||
| 13 | .then(function () { |
||
| 14 | Manager.instance._whereKeys = ['title', 'priority', 'abe_meta', 'articles'] |
||
| 15 | Manager.instance.updateList() |
||
| 16 | |||
| 17 | this.fixture = { |
||
| 18 | html: fse.readFileSync(__dirname + '/fixtures/templates/article.html', 'utf8'), |
||
| 19 | json: fse.readJsonSync(__dirname + '/fixtures/data/article-1.json') |
||
| 20 | } |
||
| 21 | done() |
||
| 22 | |||
| 23 | }.bind(this)) |
||
| 24 | }); |
||
| 25 | /** |
||
| 26 | * getAbeImport |
||
| 27 | * |
||
| 28 | */ |
||
| 29 | it('cmsData.removeDuplicateAttr', function() { |
||
| 30 | var newJson = cmsData.removeDuplicateAttr(this.fixture.html, this.fixture.json) |
||
| 31 | chai.expect(newJson.title).to.be.undefined; |
||
| 32 | }); |
||
| 33 | }); |
||
| 34 |