class RSpec::SleepingKingStudios::Configuration
Configuration
options for RSpec::SleepingKingStudios
.
Public Instance Methods
examples(&block)
click to toggle source
Get or set the configuration options for RSpec::SleepingKingStudios::Examples
.
# File lib/rspec/sleeping_king_studios/configuration.rb, line 125 def examples &block @examples ||= RSpec::SleepingKingStudios::Configuration::Examples.new @examples.instance_eval(&block) if block_given? @examples end
matchers(&block)
click to toggle source
Get or set the configuration options for RSpec::SleepingKingStudios::Matchers
.
# File lib/rspec/sleeping_king_studios/configuration.rb, line 135 def matchers &block @matchers ||= RSpec::SleepingKingStudios::Configuration::Matchers.new @matchers.instance_eval(&block) if block_given? @matchers end