I\'m just wondering whether it\'s possible to create an attribute called \"alias\" using FactoryGirl, since alias is a reserved word in Ruby.
FactoryGirl.define
Define a variable for the factory .. do block and call methods on it.
factory .. do
FactoryGirl.define do factory :blah do |f| f.name "dummy" f.alias "dummy" end end