module Testify

Overview

Testing utilities for Crystal lang specs.

Based on std's Crystal Spec, Testify is an OOP abstraction for creating unit and integration tests. This allows structuring some tests in an objective of maintenability, extendability and reusability.

See README for more details and examples.

Defined in:

testify.cr

Class Method Summary

Class Method Detail

def self.run_all : Hash(String, Test) #

Runs all tests of the classes inherited from Testify::Test class.

Is equivalent to manually calling .run on each Test class.