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.
37 lines
892 B
37 lines
892 B
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const RuleTester = require('../../tools/eslint').RuleTester;
|
|
const rule = require('../../tools/eslint-rules/prefer-assert-methods');
|
|
|
|
new RuleTester().run('prefer-assert-methods', rule, {
|
|
valid: [
|
|
'assert.strictEqual(foo, bar)',
|
|
'assert(foo === bar && baz)'
|
|
],
|
|
invalid: [
|
|
{
|
|
code: 'assert(foo == bar)',
|
|
errors: [{ message: "'assert.equal' should be used instead of '=='" }]
|
|
},
|
|
{
|
|
code: 'assert(foo === bar)',
|
|
errors: [{
|
|
message: "'assert.strictEqual' should be used instead of '==='"
|
|
}]
|
|
},
|
|
{
|
|
code: 'assert(foo != bar)',
|
|
errors: [{
|
|
message: "'assert.notEqual' should be used instead of '!='"
|
|
}]
|
|
},
|
|
{
|
|
code: 'assert(foo !== bar)',
|
|
errors: [{
|
|
message: "'assert.notStrictEqual' should be used instead of '!=='"
|
|
}]
|
|
},
|
|
]
|
|
});
|
|
|