Hi,
I'm wondering how to write a cucumber feature and spec to check the following validation
Field email, here is the validation in the model
validates :email, :presence => true,
:length => {:minimum => 3, :maximum => 254},
:uniqueness => true,
:format => {:with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i}
Thanks