| Total Complexity | 4 |
| Complexity/F | 1 |
| Lines of Code | 13 |
| Function Count | 4 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | /* eslint-env mocha */ |
||
| 3 | var Query = require('../../../../lib/http/_common').Query |
||
| 4 | var Fixtures = require('../../../support/fixture').Fixtures |
||
| 5 | var fixtures = new Fixtures('http/_common', 'Query') |
||
| 6 | |||
| 7 | describe('Unit', function () { |
||
| 8 | describe('/http', function () { |
||
| 9 | describe('/_common.js', function () { |
||
| 10 | describe('.Query', function () { |
||
| 11 | fixtures.apply(Query) |
||
| 12 | }) |
||
| 13 | }) |
||
| 14 | }) |
||
| 15 | }) |
||
| 16 |