Upload packaging folder
[platform/upstream/iotjs.git] / test / run_pass / require1 / test_require.js
1 /* Copyright 2015-present Samsung Electronics Co., Ltd. and other contributors
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16
17 var assert = require('assert');
18
19 assert.notEqual(process.platform, false);
20
21 var x = require("require_add");
22 assert.equal(x.add(1,4), 5);
23
24 var str = process.readSource("package.json");
25 var json = JSON.parse(str);
26
27 assert.equal(json.version, "2.9.1");
28 assert.equal(json.name, "npm");
29 assert.equal(json.main, "./lib/npm.js");
30 assert.equal(json.repository.type, "git");
31
32 var pkg1 = require('test_pkg');
33 assert.equal(pkg1.add(22, 44), 66);
34 assert.equal(pkg1.multi(22, 44), 968);
35 assert.equal(pkg1.add2(22, 44), 66);
36
37 var pkg2 = require('test_index');
38 assert.equal(pkg2.add(22, 44), 66);
39 assert.equal(pkg2.multi(22, 44), 968);
40 assert.equal(pkg2.add2(22, 44), 66);