1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
Feature: And
Takes a variable number of contracts. The contract passes if all of the
contracts pass.
```ruby
Contract C::And[Float, C::Neg] => String
```
This example will validate first argument of a method and accept only
negative `Float`.
Background:
Given a file named "and_usage.rb" with:
"""ruby
require "contracts"
C = Contracts
class Example
include Contracts::Core
Contract C::And[Float, C::Neg] => String
def fneg_string(number)
number.to_i.to_s
end
end
"""
Scenario: Accepts negative float
Given a file named "accepts_negative_float.rb" with:
"""ruby
require "./and_usage"
puts Example.new.fneg_string(-3.7)
"""
When I run `ruby accepts_negative_float.rb`
Then output should contain:
"""
-3
"""
Scenario: Rejects positive float
Given a file named "rejects_positive_float.rb" with:
"""ruby
require "./and_usage"
puts Example.new.fneg_string(7.5)
"""
When I run `ruby rejects_positive_float.rb`
Then output should contain:
"""
: Contract violation for argument 1 of 1: (ParamContractError)
Expected: (Float and Neg),
Actual: 7.5
Value guarded in: Example::fneg_string
With Contract: And => String
"""
Scenario: Rejects negative integer
Given a file named "rejects_negative_integer.rb" with:
"""ruby
require "./and_usage"
puts Example.new.fneg_string(-5)
"""
When I run `ruby rejects_negative_integer.rb`
Then output should contain:
"""
: Contract violation for argument 1 of 1: (ParamContractError)
Expected: (Float and Neg),
Actual: -5
Value guarded in: Example::fneg_string
With Contract: And => String
"""
Scenario: Rejects positive integer
Given a file named "rejects_positive_integer.rb" with:
"""ruby
require "./and_usage"
puts Example.new.fneg_string(5)
"""
When I run `ruby rejects_positive_integer.rb`
Then output should contain:
"""
: Contract violation for argument 1 of 1: (ParamContractError)
Expected: (Float and Neg),
Actual: 5
Value guarded in: Example::fneg_string
With Contract: And => String
"""
Scenario: Rejects others
Given a file named "rejects_others.rb" with:
"""ruby
require "./and_usage"
puts Example.new.fneg_string(:foo)
"""
When I run `ruby rejects_others.rb`
Then output should contain:
"""
: Contract violation for argument 1 of 1: (ParamContractError)
Expected: (Float and Neg),
Actual: :foo
Value guarded in: Example::fneg_string
With Contract: And => String
"""
|