Module: CucumberValueParser

Defined in:
lib/test_support/cucumber/support/values.rb

Instance Method Summary collapse

Instance Method Details

#coerce_value(value) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/test_support/cucumber/support/values.rb', line 6

def coerce_value(value)
  # what is this, PHP?
  if value.blank?
    nil
  elsif value == 'true'
    true
  elsif value == 'false'
    false
  elsif value =~ /\d+\.\d+/
    value.to_f
  elsif value =~ /^\d+$/
    value.to_i
  elsif value.is_a?(String) and date = Chronic.parse(value)
    date
  else
    value
  end
end

#compare_values(a, b) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/test_support/cucumber/support/values.rb', line 25

def compare_values(a, b)
  if b.blank?
    a.should be_blank
  elsif a.is_a? Time
    b = Chronic.parse b unless b.is_a?(Time)
    a.should == b
  elsif a.is_a? Date 
    b = Date.parse b unless b.is_a?(Date)
    a.should == b
  elsif b =~ /\d+\.\d+/
    b = b.to_f
    a.to_f.should be_close(b, 0.00001)
  elsif b =~ /^\d+$/
    b = b.to_i
    a.to_i.should == b
  else
    a.should == b
  end
end

#equality?(a, b) ⇒ Boolean

Returns:

  • (Boolean)


45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/test_support/cucumber/support/values.rb', line 45

def equality?(a, b)
  if b.blank?
    a.blank?
  elsif a.is_a? Date or a.is_a? Time
    b = Date.parse b
    a == b
  elsif b =~ /\d+\.\d+/
    (a.to_f - b.to_f).abs <= 0.00001
  elsif b =~ /^\d+$/
    a.to_i == b.to_i
  else
    a == b
  end
end