dojo/tests/support/undef.js

Maintainability

79.33

Lines of code

16

Created with Raphaël 2.1.002550751002015-5-18

2015-5-18
Maintainability: 79.33

Created with Raphaël 2.1.0051015202015-5-18

2015-5-18
Lines of Code: 16

Difficulty

6.93

Estimated Errors

0.06

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>1

By SLOC

Created with Raphaël 2.1.0<anonymous>12
1
define([
2
    'require',
3
    'intern!object',
4
    'intern/chai!assert'
5
], function (require, registerSuite, assert) {
6
    var global = this;
7
 
8
    registerSuite({
9
        name: 'undef',
10
 
11
        'test': function () {
12
            assert.ok(global.require.undef);
13
            assert.ok(require.undef);
14
        }
15
    });
16
});