https://github.com/cucumber/multi_test
Help Cucumber-Ruby pick a good default assertion framework
https://github.com/cucumber/multi_test
ruby
Last synced: 10 months ago
JSON representation
Help Cucumber-Ruby pick a good default assertion framework
- Host: GitHub
- URL: https://github.com/cucumber/multi_test
- Owner: cucumber
- License: mit
- Created: 2013-05-20T12:11:29.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T23:05:01.000Z (over 1 year ago)
- Last Synced: 2025-03-15T01:22:20.127Z (10 months ago)
- Topics: ruby
- Language: Ruby
- Homepage: https://cucumber.io
- Size: 87.9 KB
- Stars: 0
- Watchers: 93
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/cucumber/multi_test/actions/workflows/test-ruby.yml)
[](https://badge.fury.io/rb/multi_test)
This project gives you a uniform interface onto whatever testing library has been
loaded into a running Ruby process.
We use this within cucumber-ruby to discover and auto-load your favourite assertion library
Example:
~~~ruby
require 'multi_test'
my_tests = Object.new
MultiTest.extend_with_best_assertion_library(my_tests)
~~~