Remove unused `another_email` factory

This commit is contained in:
Robert Speicher 2016-03-06 16:34:43 -05:00
parent b8a1f1c42d
commit 042b047fc8
1 changed files with 1 additions and 9 deletions

View File

@ -1,14 +1,6 @@
FactoryGirl.define do
factory :email do
user
email do
FFaker::Internet.email('alias')
end
factory :another_email do
email do
FFaker::Internet.email('another.alias')
end
end
email { FFaker::Internet.email('alias') }
end
end