module TestAssistant
Utility module for working with RSpec test suites for Rails or similar applications
Contains:
-
Rendering and debugging tools for viewing test failures
@see github.com/greena13/test_assistant Test Assistant Github page
Constants
- VERSION
Public Class Methods
configure(rspec_config) { |configuration| ... }
click to toggle source
Configures what parts of TestAssistant
are included in your test suite and how they behave.
@see TestAssistant::Configuration
@param rspec_config RSpec configuration object available in RSpec.configure block @return void
# File lib/test_assistant.rb, line 19 def configure(rspec_config) configuration = Configuration.new(rspec_config) if block_given? yield(configuration) end end
Also aliased as: config