We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea781f commit bf0f395Copy full SHA for bf0f395
test/test_helper.rb
@@ -9,10 +9,10 @@
9
end
10
require 'redgreen' if RUBY_VERSION < "1.9"
11
12
-require 'test/unit'
+require 'minitest/autorun'
13
14
require 'closure-compiler'
15
16
-class Test::Unit::TestCase
+class MiniTest::Unit::TestCase
17
include Closure
18
test/unit/closure_compiler_test.rb
@@ -1,6 +1,6 @@
1
require 'test_helper'
2
3
-class ClosureCompilerTest < Test::Unit::TestCase
+class ClosureCompilerTest < MiniTest::Unit::TestCase
4
5
ORIGINAL = "window.hello = function(name) { return console.log('hello ' + name ); }; hello.squared = function(num) { return num * num; }; hello('world');"
6
0 commit comments