Currently I have a very simple constants implementation being loaded as a
Rails initialiser
module MVOR
module Postage
THRESHOLD = BigDecimal.new('6.99')
RATE = BigDecimal.new('30.00')
end
end
My scenarios of my postage feature want to deal with two situations when the
THRESHOLD has been set to zero and to '6.99'. The question is how can I set
the threshold in my step_definition. So I want to implement
Given the postage threshold is 0.00
Given the postage threshold is 6.99
I've considered a number of ideas, but seem to keep on getting into complex
solutions for what I assume is something very simple.
TIA
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users