Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4cf59c112e2a
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 796cc03054d4
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on May 23, 2015

  1. Copy the full SHA
    35292a5 View commit details
  2. Move test-unit/minitest adapter to vendored

    Leave to someone else the responsibility of implementing 
    a proper opal-test-unit.
    elia committed May 23, 2015
    Copy the full SHA
    2ccc2ea View commit details
  3. Restore running some cRuby test

    rel #886
    elia committed May 23, 2015
    Copy the full SHA
    796cc03 View commit details
Showing with 24 additions and 14 deletions.
  1. +1 −4 Rakefile
  2. +0 −10 stdlib/test/unit.rb
  3. +23 −0 vendored-minitest/test/unit.rb
5 changes: 1 addition & 4 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -11,7 +11,4 @@ import 'tasks/testing.rake'
import 'tasks/building.rake'
import 'tasks/linting.rake'

# task :default => [:rspec, :mspec_node, :cruby_tests]
# temporarily excluding :cruby_tests because ruby/test_call.rb raises
# NoMethodError: undefined method `assert_nothing_raised' for TestCall#test_callinfo
task :default => [:rspec, :mspec_node]
task :default => [:rspec, :mspec_node, :cruby_tests]
10 changes: 0 additions & 10 deletions stdlib/test/unit.rb

This file was deleted.

23 changes: 23 additions & 0 deletions vendored-minitest/test/unit.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# test/unit compatibility layer using minitest.

require 'minitest/autorun'
module Test
module Unit
class TestCase < Minitest::Test
alias assert_raise assert_raises

def assert_nothing_raised(*)
yield
end

def assert_raise_with_message(exception, err_message, msg = nil)
err = assert_raises(exception, msg) { yield }
if err_message.is_a?(Regexp)
assert_matches err_message, err.message
else
assert_equal err_message, err.message
end
end
end
end
end