Project

sus

0.04
The project is in a healthy, maintained state
A fast and scalable test runner.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
 Dependencies

Development

 Project Readme

Sus(picious) [working name]

An opinionated test framework designed with several goals:

  • As fast as possible, aiming for ~10,000 assertions per second per core.
  • Isolated tests which parallelise easily (including class definitions).
  • Native support for balanced (work-stealing) multi-core execution.
  • Incredible test output with detailed failure logging (including nested assertions and predicates).

Non-features:

  • Flexibility at the expense of performance.
  • Backwards compatibility.

Development Status

Ideas

I've been thinking about how this should grow long term. I see a separation between "defining tests" and "running tests". I think this gem should be split across those responsibilities. By doing so, defining tests remains relatively static, but can be extended independently of execution model. And execution models which include parallelism, code coverage, multi-server, etc can be implemented effectively.

The key point is that we need a well defined interface between defining tests and running tests. This interface is provided by the test registry, which can load test files. The test registry provides a way to enumerate all tests where each test has an identity that uniquely identifies it.

Sequential vs Parallel

sus has both sequential and multi-threaded (sus-parallel) execution models for tests. Parallel execution is potentially much faster. This is an experimental feature.

Sequential vs Parallel

Installation

bundle add sus

Usage

Check test directory for examples.

Contributing

  1. Fork it.
  2. Create your feature branch (git checkout -b my-new-feature).
  3. Commit your changes (git commit -am 'Add some feature').
  4. Push to the branch (git push origin my-new-feature).
  5. Create new Pull Request.