-
Gert Goet authored
No need to add an it-block or to wrap the table in one. For example: ```ruby describe '#full_name' do specify_each(<<-TABLE) do |first, last, expected| | Foo | Bar | Foo Bar | TABLE expect(full_name(first, last)).to eq expected end end ``` Also: * rename `each_row` => `specify_each` * have default description
Gert Goet authoredNo need to add an it-block or to wrap the table in one. For example: ```ruby describe '#full_name' do specify_each(<<-TABLE) do |first, last, expected| | Foo | Bar | Foo Bar | TABLE expect(full_name(first, last)).to eq expected end end ``` Also: * rename `each_row` => `specify_each` * have default description
Loading