Class: TestBench::DetectCoverage::Controls::Receiver::Class::Example
- Inherits:
-
Object
- Object
- TestBench::DetectCoverage::Controls::Receiver::Class::Example
show all
- Includes:
- Module::Example
- Defined in:
- lib/test_bench/detect_coverage/controls/receiver.rb
Class Method Summary
collapse
Instance Method Summary
collapse
some_module_class_method, #some_module_instance_method, some_module_singleton_method
Class Method Details
.build ⇒ Object
36
37
38
39
40
41
42
43
44
45
|
# File 'lib/test_bench/detect_coverage/controls/receiver.rb', line 36
def self.build
instance = new
class << instance
def some_singleton_method
end
end
instance
end
|
.some_class_method ⇒ Object
50
51
|
# File 'lib/test_bench/detect_coverage/controls/receiver.rb', line 50
def self.some_class_method
end
|
.some_singleton_class_method ⇒ Object
54
55
|
# File 'lib/test_bench/detect_coverage/controls/receiver.rb', line 54
def some_singleton_class_method
end
|
Instance Method Details
#some_instance_method ⇒ Object
47
48
|
# File 'lib/test_bench/detect_coverage/controls/receiver.rb', line 47
def some_instance_method
end
|