Class: RSpec::RubyContentMatchers::HaveModule

Inherits:
RSpec::RubyContentMatcher show all
Defined in:
lib/code_spec/matchers/have_class_module.rb

Direct Known Subclasses

HaveClass

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

Attributes inherited from RSpec::RubyContentMatcher

#content, #content_matches, #end_option

Instance Method Summary collapse

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(name, postfix = nil) ⇒ HaveModule

Returns a new instance of HaveModule.



5
6
7
8
9
10
# File 'lib/code_spec/matchers/have_class_module.rb', line 5

def initialize(name, postfix=nil)
  @name = name.to_s.camelize
  super @name
  @postfix = postfix.to_s.camelize if postfix
  @type = :module
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/code_spec/matchers/have_class_module.rb', line 3

def name
  @name
end

#postfixObject (readonly)

Returns the value of attribute postfix.



3
4
5
# File 'lib/code_spec/matchers/have_class_module.rb', line 3

def postfix
  @postfix
end

#typeObject (readonly)

Returns the value of attribute type.



3
4
5
# File 'lib/code_spec/matchers/have_class_module.rb', line 3

def type
  @type
end

Instance Method Details

#failure_messageObject



12
13
14
15
# File 'lib/code_spec/matchers/have_class_module.rb', line 12

def failure_message
  super
  display "Expected there to be the #{type} #{name}"
end

#negative_failure_messageObject



17
18
19
20
# File 'lib/code_spec/matchers/have_class_module.rb', line 17

def negative_failure_message
  super
  display "Did not expected there to be the #{type} #{name}"
end