File: coffeescript-tests.js

package info (click to toggle)
node-amdefine 1.0.1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 616 kB
  • sloc: javascript: 7,139; makefile: 2; sh: 1
file content (14 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
doh.register(
    "coffeescript",
    [
        function coffeescript(t){
            var main = require('./main');

            t.is('regular', main.regular.name);
            t.is('attach', main.controller.attach());
            t.is('render', main.view.render());
        }
    ]
);

doh.run();