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.
32 lines
674 B
32 lines
674 B
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const RuleTester = require('../../tools/eslint').RuleTester;
|
|
const rule = require('../../tools/eslint-rules/crypto-check');
|
|
|
|
const message = 'Please add a hasCrypto check to allow this test to be ' +
|
|
'skipped when Node is built "--without-ssl".';
|
|
|
|
new RuleTester().run('crypto-check', rule, {
|
|
valid: [
|
|
'foo',
|
|
'crypto',
|
|
`
|
|
if (!common.hasCrypto) {
|
|
common.skip();
|
|
}
|
|
require('crypto');
|
|
`
|
|
],
|
|
invalid: [
|
|
{
|
|
code: 'require("crypto")',
|
|
errors: [{ message }]
|
|
},
|
|
{
|
|
code: 'if (common.foo) {} require("crypto")',
|
|
errors: [{ message }]
|
|
}
|
|
]
|
|
});
|
|
|