Skip to content

Commit bf0f395

Browse files
committed
minutest please.
1 parent bea781f commit bf0f395

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/test_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
end
1010
require 'redgreen' if RUBY_VERSION < "1.9"
1111
end
12-
require 'test/unit'
12+
require 'minitest/autorun'
1313

1414
require 'closure-compiler'
1515

16-
class Test::Unit::TestCase
16+
class MiniTest::Unit::TestCase
1717
include Closure
1818
end

test/unit/closure_compiler_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'test_helper'
22

3-
class ClosureCompilerTest < Test::Unit::TestCase
3+
class ClosureCompilerTest < MiniTest::Unit::TestCase
44

55
ORIGINAL = "window.hello = function(name) { return console.log('hello ' + name ); }; hello.squared = function(num) { return num * num; }; hello('world');"
66

0 commit comments

Comments
 (0)