Created
September 16, 2010 08:53
-
-
Save brenes/582151 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dado que se han suscrito los siguientes usuarios: | |
| email | pais | interests | | |
| [email protected] | España | Arquitectos | | |
| [email protected] | España | Artistas y fotógrafos | | |
--- | |
Dado /^que se han suscrito los siguientes usuarios:$/ do |subscriptors| | |
subscriptors.hashes.each do |s| | |
subscriber = Factory.create :subscriber, :email => s[:email], :interests => Factory.create(:interests, :name => s[:interests]) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment