2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2016-12-01 10:14:12 -06:00
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
2014-02-10 21:14:53 +01:00
|
|
|
|
2016-12-01 10:14:12 -06:00
|
|
|
const content = require(common.fixturesDir +
|
2014-02-10 21:14:53 +01:00
|
|
|
'/json-with-directory-name-module/module-stub/one/two/three.js');
|
|
|
|
|
2016-12-01 10:14:12 -06:00
|
|
|
assert.notStrictEqual(content.rocko, 'artischocko');
|
|
|
|
assert.strictEqual(content, 'hello from module-stub!');
|