Class: Micronaut::Matchers::Have
- Inherits:
-
Object
- Object
- Micronaut::Matchers::Have
show all
- Defined in:
- lib/micronaut/matchers/have.rb
Overview
Instance Method Summary
collapse
Constructor Details
#initialize(expected, relativity = :exactly) ⇒ Have
Returns a new instance of Have.
6
7
8
9
|
# File 'lib/micronaut/matchers/have.rb', line 6
def initialize(expected, relativity=:exactly)
@expected = (expected == :no ? 0 : expected)
@relativity = relativity
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args, &block) ⇒ Object
77
78
79
80
81
82
83
84
85
|
# File 'lib/micronaut/matchers/have.rb', line 77
def method_missing(sym, *args, &block)
@collection_name = sym
if inflector = (defined?(ActiveSupport::Inflector) ? ActiveSupport::Inflector : (defined?(Inflector) ? Inflector : nil))
@plural_collection_name = inflector.pluralize(sym.to_s)
end
@args = args
@block = block
self
end
|
Instance Method Details
#description ⇒ Object
67
68
69
|
# File 'lib/micronaut/matchers/have.rb', line 67
def description
"have #{relative_expectation} #{@collection_name}"
end
|
#failure_message ⇒ Object
41
42
43
|
# File 'lib/micronaut/matchers/have.rb', line 41
def failure_message
"expected #{relative_expectation} #{@collection_name}, got #{@given}"
end
|
#matches?(collection_owner) ⇒ Boolean
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/micronaut/matchers/have.rb', line 19
def matches?(collection_owner)
if collection_owner.respond_to?(@collection_name)
collection = collection_owner.__send__(@collection_name, *@args, &@block)
elsif (@plural_collection_name && collection_owner.respond_to?(@plural_collection_name))
collection = collection_owner.__send__(@plural_collection_name, *@args, &@block)
elsif (collection_owner.respond_to?(:length) || collection_owner.respond_to?(:size))
collection = collection_owner
else
collection_owner.__send__(@collection_name, *@args, &@block)
end
@given = collection.size if collection.respond_to?(:size)
@given = collection.length if collection.respond_to?(:length)
raise not_a_collection if @given.nil?
return @given >= @expected if @relativity == :at_least
return @given <= @expected if @relativity == :at_most
@given == @expected
end
|
#negative_failure_message ⇒ Object
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/micronaut/matchers/have.rb', line 45
def negative_failure_message
if @relativity == :exactly
return "expected target not to have #{@expected} #{@collection_name}, got #{@given}"
elsif @relativity == :at_most
return <<-EOF
Isn't life confusing enough?
Instead of having to figure out the meaning of this:
should_not have_at_most(#{@expected}).#{@collection_name}
We recommend that you use this instead:
should have_at_least(#{@expected + 1}).#{@collection_name}
EOF
elsif @relativity == :at_least
return <<-EOF
Isn't life confusing enough?
Instead of having to figure out the meaning of this:
should_not have_at_least(#{@expected}).#{@collection_name}
We recommend that you use this instead:
should have_at_most(#{@expected - 1}).#{@collection_name}
EOF
end
end
|
#not_a_collection ⇒ Object
37
38
39
|
# File 'lib/micronaut/matchers/have.rb', line 37
def not_a_collection
"expected #{@collection_name} to be a collection but it does not respond to #length or #size"
end
|
#relativities ⇒ Object
11
12
13
14
15
16
17
|
# File 'lib/micronaut/matchers/have.rb', line 11
def relativities
@relativities ||= {
:exactly => "",
:at_least => "at least ",
:at_most => "at most "
}
end
|
#respond_to?(sym) ⇒ Boolean
71
72
73
|
# File 'lib/micronaut/matchers/have.rb', line 71
def respond_to?(sym)
@expected.respond_to?(sym) || super
end
|