module PowerAssert
Constants
- Configuration
- VERSION
Public Instance Methods
!()
click to toggle source
# File lib/power_assert/enable_tracepoint_events.rb, line 27 def ! end
==()
click to toggle source
# File lib/power_assert/enable_tracepoint_events.rb, line 30 def == end
configuration()
click to toggle source
# File lib/power_assert.rb, line 24 def configuration @configuration ||= Configuration[false] end
configure() { |configuration| ... }
click to toggle source
# File lib/power_assert.rb, line 28 def configure yield configuration end
start(assertion_proc_or_source, assertion_method: nil, source_binding: TOPLEVEL_BINDING) { |context| ... }
click to toggle source
# File lib/power_assert.rb, line 32 def start(assertion_proc_or_source, assertion_method: nil, source_binding: TOPLEVEL_BINDING) if respond_to?(:clear_global_method_cache, true) clear_global_method_cache end yield Context.new(assertion_proc_or_source, assertion_method, source_binding) end
Private Instance Methods
clear_global_method_cache()
click to toggle source
# File lib/power_assert.rb, line 42 def clear_global_method_cache eval('using PowerAssert.const_get(:Empty)', TOPLEVEL_BINDING) end