Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-01-10 | Extract Benchmark.measure on assert_cpu_usage_low | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/12544 | |||
2024-09-04 | Ignore blocks to `Test::Unit::Assertions#pend` silently | Nobuyoshi Nakada | |
Although `pend` in test-unit gem expects the block does not pass if it is given, our `pend` should ignore the block silently as same as it just skips the test with no message by default. Add an unused parameter, to suppress the warning for the block to be ignored. Notes: Merged: https://github.com/ruby/ruby/pull/11538 | |||
2024-05-07 | [PRISM] Enable test_methoddef_endless_command | Kevin Newton | |
2022-06-25 | Prevent accidental use of assert_raises | Nobuyoshi Nakada | |
2022-04-20 | Added assert_true and assert_false same as test-unit gem | Hiroshi SHIBATA | |
2022-01-17 | Removed skip alias in test suite | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/5446 | |||
2021-10-18 | Remove `Test::Unit::Assertions#exception_details` | Nobuyoshi Nakada | |
Never used since fa0f3eff228bb26de6d5b0e1238b1f358165dbd0. Notes: Merged: https://github.com/ruby/ruby/pull/4983 | |||
2021-09-13 | Use capture_output instead of capture_io | Hiroshi SHIBATA | |
2021-09-13 | Rename capture_io to capture_output and deprecate to use capture_io | Hiroshi SHIBATA | |
2021-09-13 | Removed unused mu_pp method | Hiroshi SHIBATA | |
2021-09-13 | Renamed skip to pend and prepared to deprecate skip method | Hiroshi SHIBATA | |
2021-09-11 | Removed unsed assertions for rubygems | Hiroshi SHIBATA | |
2021-09-11 | Fixed uninitialized constant Test::Unit::Assertions::MIN_MEASURABLE. | Hiroshi SHIBATA | |
I'm not sure why it's failed under the chkbuild and rubyci. http://rubyci.s3.amazonaws.com/arch/ruby-master/log/20210911T000007Z.fail.html.gz | |||
2021-09-11 | Replace Test::Assertion and Test::Skip to Test::Unit::AssertionFailedError ↵ | Hiroshi SHIBATA | |
and Test::Unit::PendedError Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-11 | Fixed inconsistent require order for assertions and core_assertions | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-11 | Integrate Minitest to Test | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-11 | Replace MiniTest::Unit to Test::Unit::Runner | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-11 | Use self class for diff | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-11 | Use MiniTest | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-11 | Move constants under the TestCase | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-11 | Move MiniTest::Assertions to Test::Unit::Assertions | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/4813 | |||
2021-09-06 | Use Test::Unit::PendedError instead of MiniTest::Skip for test-unit migration | Hiroshi SHIBATA | |
2021-09-06 | Simplify conditions for CoreAssertion initialization | Hiroshi SHIBATA | |
2021-07-11 | Move core_assertions.rb from test/unit | Nobuyoshi Nakada | |
This file contains extended assertions for ruby core which do not belong to test/unit. | |||
2021-06-01 | Expose assert_all? for ruby/csv repo | Hiroshi SHIBATA | |
2020-12-24 | Pass keyword options in assert_syntax_error | Nobuyoshi Nakada | |
2020-10-08 | Expose assert, assert_respond_to and assert_not_respond_to for default gems. | Hiroshi SHIBATA | |
2020-07-02 | Expose `assert_pattern_list` for drb test with test-unit gem. | Hiroshi SHIBATA | |
2020-02-11 | Expose assert_no_memory_leak for weakref | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/2900 | |||
2020-02-11 | Expose assert_normal_exit for weakref | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/2900 | |||
2019-10-23 | Catch syntax error even if fatal | Nobuyoshi Nakada | |
2019-10-01 | expose assert_raise and assert_join_threads | Hiroshi SHIBATA | |
Notes: Merged: https://github.com/ruby/ruby/pull/2516 | |||
2019-08-14 | Move some assertions to CoreAssertions. (#2354) | SHIBATA Hiroshi | |
They are used by default gems like forwardable. * assert_raise_with_message * assert_warning * assert_warn Notes: Merged-By: hsbt <[email protected]> | |||
2019-08-03 | Move assert_ruby_status and assert_throw to CoreAssertions for default gems. | Hiroshi SHIBATA | |
2019-07-15 | Separate the assertions of ruby core tests from test/unit/assertions. | Hiroshi SHIBATA | |
2019-07-02 | Move to tool/lib from test/lib. | Hiroshi SHIBATA | |