Description: use local version of coffeescript
 The upstream test suite attempts to open an external link to grab a copy of coffee-script.js. Instead, use the local copy provided by the package ruby-coffee-script-source.
Author: Caitlin Matos <caitlin.matos@zoho.com> 
Last-Update: 2014-07-29 
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/test/test_execjs.rb
+++ b/test/test_execjs.rb
@@ -166,7 +166,7 @@ class TestExecJS < Test
 
   def test_coffeescript
     require "open-uri"
-    assert source = open("http://coffeescript.org/extras/coffee-script.js").read
+    assert source = open("/usr/share/javascript/coffeescript/coffee-script.js").read
     context = ExecJS.compile(source)
     assert_equal 64, context.call("CoffeeScript.eval", "((x) -> x * x)(8)")
   end
