Skip to content

Commit

Permalink
[mozilla#312] Use a public remote resource
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Feb 16, 2011
1 parent e79ef8e commit 3f8952c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/popcorn.unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1329,19 +1329,19 @@ test("Popcorn.getScript()", function () {

Popcorn.getScript(

"https://github.com/rwldrn/q/raw/master/q.js",
"https://github.com/rwldrn/has.js/raw/master/has.js",

function() {

ok( true, "getScript C returned");
plus();


ok( ("Q" in window) , "Popcorn.getScript https://github.com/rwldrn/q/raw/master/q.js loaded: `Q` is available");
ok( ("has" in window) , "Popcorn.getScript https://github.com/rwldrn/has.js/raw/master/has.js loaded: `has` is available");
plus();


delete window["Q"];
delete window["has"];
}
);

Expand Down

0 comments on commit 3f8952c

Please sign in to comment.