summaryrefslogtreecommitdiff
path: root/tool/test/minitest
AgeCommit message (Collapse)Author
2021-09-11Move test of minitest to testunitHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/4813
2021-05-19Removed minitest/mockHiroshi SHIBATA
2021-05-18Removed minitest/benchmarkHiroshi SHIBATA
2021-05-18Removed minitest/autorunHiroshi SHIBATA
2020-05-08Workaround for Minitest5Hiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/3087
2020-02-27MiniTest::Unit.options has default :seedKoichi Sasada
MiniTest::Unit (superclass of Test::Unit::Runner) does not has default seed parameter, but assigned after initializing. However some tests use MiniTest::Unit without setup of seed option and it cases unexpected test failures. To solve this issue, add default seed parameter 42.
2020-02-27`srand($seed)` at the beginning of each testKoichi Sasada
To avoid `srand(0)` effect in the other tests, call `srand($seed)` at the beginning of each test (setup). [Feature #16655]
2019-07-02Adjust minitest file pathNobuyoshi Nakada
2019-07-02Adjust minitest file pathNobuyoshi Nakada
2019-07-02Split test files for test-framework that are test-unit and minitest to tool ↵Hiroshi SHIBATA
direcotry.