I'm curious if ya'll would be open to adding a simple ability to parameterize steps. I'm not wanting regex madness (had enough of that in Cucumber!) but just something simple like:
Given %(I create an organization named :name) do |name|
visit "/organizations/new"
fill_in "Name", with: name
click_on "Create"
end
It doesn't seem to break the Spinach philosophy, but I wanted to check and make sure before going off and implementing it.
I'm curious if ya'll would be open to adding a simple ability to parameterize steps. I'm not wanting regex madness (had enough of that in Cucumber!) but just something simple like:
It doesn't seem to break the Spinach philosophy, but I wanted to check and make sure before going off and implementing it.