Class: RSpec::RubyContentMatchers::HaveSubclass
- Inherits:
-
RSpec::RubyContentMatcher
- Object
- RSpec::RubyContentMatcher
- RSpec::RubyContentMatchers::HaveSubclass
- Defined in:
- lib/code_spec/matchers/have_subclass.rb
Constant Summary
Constants inherited from RSpec::RubyContentMatcher
RSpec::RubyContentMatcher::ANY_GROUP, RSpec::RubyContentMatcher::LPAR, RSpec::RubyContentMatcher::OPT_ARGS, RSpec::RubyContentMatcher::OPT_SPACES, RSpec::RubyContentMatcher::Q_ANY_GROUP, RSpec::RubyContentMatcher::RPAR, RSpec::RubyContentMatcher::SPACES
Instance Attribute Summary collapse
-
#full_class ⇒ Object
readonly
Returns the value of attribute full_class.
-
#klass ⇒ Object
readonly
Returns the value of attribute klass.
-
#superclass ⇒ Object
readonly
Returns the value of attribute superclass.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Attributes inherited from RSpec::RubyContentMatcher
#content, #content_matches, #end_option
Instance Method Summary collapse
- #failure_message ⇒ Object
-
#initialize(klass, superclass, type = nil) ⇒ HaveSubclass
constructor
A new instance of HaveSubclass.
- #negative_failure_message ⇒ Object
Methods inherited from RSpec::RubyContentMatcher
#any_args_expr, #args_expr, #args_msg, #comment_end, #debug, #debug?, #debug_content, #display, #display_content, #end_expr, #get_expr, #handle_result, #index, #indexes, #is_match?, #matches?, #opt
Constructor Details
#initialize(klass, superclass, type = nil) ⇒ HaveSubclass
Returns a new instance of HaveSubclass.
5 6 7 8 9 10 11 |
# File 'lib/code_spec/matchers/have_subclass.rb', line 5 def initialize(klass, superclass, type=nil) @klass = klass.to_s.camelize super @klass @superclass = superclass.to_s.camelize @type = type.to_s.camelize if type @full_class = "#{@klass}#{@type}" end |
Instance Attribute Details
#full_class ⇒ Object (readonly)
Returns the value of attribute full_class.
3 4 5 |
# File 'lib/code_spec/matchers/have_subclass.rb', line 3 def full_class @full_class end |
#klass ⇒ Object (readonly)
Returns the value of attribute klass.
3 4 5 |
# File 'lib/code_spec/matchers/have_subclass.rb', line 3 def klass @klass end |
#superclass ⇒ Object (readonly)
Returns the value of attribute superclass.
3 4 5 |
# File 'lib/code_spec/matchers/have_subclass.rb', line 3 def superclass @superclass end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
3 4 5 |
# File 'lib/code_spec/matchers/have_subclass.rb', line 3 def type @type end |
Instance Method Details
#failure_message ⇒ Object
13 14 15 16 |
# File 'lib/code_spec/matchers/have_subclass.rb', line 13 def super display "Expected there to be the subclass #{full_class} of #{superclass}" end |
#negative_failure_message ⇒ Object
18 19 20 21 |
# File 'lib/code_spec/matchers/have_subclass.rb', line 18 def super display "Did no expected there to be the subclass #{full_class} of #{superclass}" end |