~caneypuggies/reformedchurcheslocator/couchapp-backbone

« back to all changes in this revision

Viewing changes to _attachments/js/vendor/requirejs/tests/remoteUrls/remoteUrls-tests.js

  • Committer: Tim Black
  • Date: 2013-09-16 22:50:16 UTC
  • Revision ID: tim@alwaysreformed.com-20130916225016-zk8jiba25z33ew7h
Versioned Bower vendor directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require({
 
2
        baseUrl: requirejs.isBrowser ? "./" : "./remoteUrls/"
 
3
    },
 
4
    ["require", "jqwrap"],
 
5
    function(require, jqwrap) {
 
6
        doh.register(
 
7
            "remoteUrls",
 
8
            [
 
9
                function remoteUrls(t){
 
10
                    t.is(true, jqwrap.isFunction);
 
11
                }
 
12
            ]
 
13
        );
 
14
 
 
15
        doh.run();
 
16
    }
 
17
);