Module: SimplyTestable::TestCase
- Defined in:
- lib/simply_testable/test_case.rb
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
3 4 5 6 7 8 9 10 11 |
# File 'lib/simply_testable/test_case.rb', line 3 def self.included(base) base.extend(ClassMethods) base.send(:include, InstanceMethods) base.class_eval do # class << self alias_method_chain :method_missing, :create_object # end end end |