coffeescript-tests.js 298 B

1234567891011121314
  1. doh.register(
  2. "coffeescript",
  3. [
  4. function coffeescript(t){
  5. var main = require('./main');
  6. t.is('regular', main.regular.name);
  7. t.is('attach', main.controller.attach());
  8. t.is('render', main.view.render());
  9. }
  10. ]
  11. );
  12. doh.run();