sugarcrm / rspec-tabular

Rspec extension for writing tabular examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add block support to the tabular assertions

acant opened this issue · comments

This will be useful for checking the side effects of assertions.

inputs  :input1, :input2, :input3
it_with(:value1, :value2, :value3, :result) do
  # check side effects
end
side_effects_with(:value1, :value2, :value3) do
  # check side effects
end

Never mind, this already works!