Module: Fix
- Defined in:
- lib/fix.rb,
lib/fix/it.rb,
lib/fix/on.rb,
lib/fix/test.rb,
lib/fix/report.rb
Overview
Namespace for the Fix framework.
Defined Under Namespace
Class Method Summary collapse
-
.describe(front_object, verbose: true, **options, &specs) ⇒ Object
Specs are built with this method.
Class Method Details
.describe(front_object, verbose: true, **options, &specs) ⇒ Object
Specs are built with this method.
20 21 22 23 24 25 |
# File 'lib/fix.rb', line 20 def self.describe(front_object, verbose: true, **, &specs) t = Test.new(front_object, verbose: verbose, **, &specs) print t.report.to_s if verbose exit t.pass? end |