I introduce a property-basedtesting tool for Ruby. Ruby's ease of test-writing and rich ecosystem are widely acclaimed. However, property-basedtesting is not as widely used as in other languages such as Haskell or Elixir, and I think this is because there is no de facto testing tool.
This gem currently not only has the basic functionality of stateless property-basedtesting but also has the following features:
- Support verbose mode that allows you to see its shrinking procedure and algorithms.
- Support several concurrency/parallel executions of each test. As of now, Ractor/Thread/Process are available. (The default is sequential, considering benchmark results and actual use cases)
I introduce a property-based testing tool for Ruby.
Ruby's ease of test-writing and rich ecosystem are widely acclaimed. However, property-based testing is not as widely used as in other languages such as Haskell or Elixir, and I think this is because there is no de facto testing tool.
This gem currently not only has the basic functionality of stateless property-based testing but also has the following features:
- Support verbose mode that allows you to see its shrinking procedure and algorithms.
- Support several concurrency/parallel executions of each test. As of now, Ractor/Thread/Process are available. (The default is sequential, considering benchmark results and actual use cases)
Happy hacking!