mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
9 lines
277 B
JavaScript
9 lines
277 B
JavaScript
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
|
||
|
var content = require(common.fixturesDir +
|
||
|
'/json-with-directory-name-module/module-stub/one/two/three.js');
|
||
|
|
||
|
assert.notEqual(content.rocko, 'artischocko');
|
||
|
assert.equal(content, 'hello from module-stub!');
|