mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
643 B
27 lines
643 B
'use strict';
|
|
|
|
require('../common');
|
|
|
|
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 }]
|
|
}
|
|
]
|
|
});
|
|
|