summaryrefslogtreecommitdiff
path: root/test/parallel/test-eslint-prefer-common-mustnotcall.js
blob: c2e298cde2153c19563c50b58bba26abb2bc73a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'use strict';

require('../common');

const RuleTester = require('../../tools/node_modules/eslint').RuleTester;
const rule = require('../../tools/eslint-rules/prefer-common-mustnotcall');

const message = 'Please use common.mustNotCall(msg) instead of ' +
                'common.mustCall(fn, 0) or common.mustCall(0).';

new RuleTester().run('prefer-common-mustnotcall', rule, {
  valid: [
    'common.mustNotCall(fn)',
    'common.mustCall(fn)',
    'common.mustCall(fn, 1)'
  ],
  invalid: [
    {
      code: 'common.mustCall(fn, 0)',
      errors: [{ message }]
    },
    {
      code: 'common.mustCall(0)',
      errors: [{ message }]
    }
  ]
});