Completed
Push — dev ( d30456...4fd03f )
by Fike
33s
created

test/suites/unit/http/_common.query.spec.js   A

Complexity

Total Complexity 4
Complexity/F 1

Size

Lines of Code 13
Function Count 4

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 13
rs 10
wmc 4
mnd 0
bc 4
fnc 4
bpm 1
cpm 1
noi 0
1
/* eslint-env mocha */
2
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