inline-tests-gem icon indicating copy to clipboard operation
inline-tests-gem copied to clipboard

A ruby gem for inlining tests immediately following the methods they test

Results 1 inline-tests-gem issues
Sort by recently updated
recently updated
newest added

The syntax for inline tests right now technically works, but it's still pretty weird: ```ruby tested def integer_division(x, y) return Float::INFINITY if y.zero? x.to_i / y.to_i end, tests do |integer_division|...