summaryrefslogtreecommitdiff
path: root/test/parallel/test-eslint-prefer-common-mustnotcall.js
blob: 48ddaf430c1d6c4546720a6560c3feab5bc25dd1 (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
28
29
'use strict';

const common = require('../common');

common.skipIfEslintMissing();

const RuleTester = require('../../tools/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 }]
    }
  ]
});