Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Last active August 29, 2015 13:55
Show Gist options
  • Save barnes7td/8761318 to your computer and use it in GitHub Desktop.
Save barnes7td/8761318 to your computer and use it in GitHub Desktop.
FactoryGirl factory for griddler email
FactoryGirl.define do
factory :email, class: OpenStruct do
# to [{ full: '[email protected]', email: '[email protected]', token: 'to_user', host: 'email.com', name: nil }]
# from '[email protected]'
subject 'email subject'
body 'Hello!'
end
end
describe EmailProcessor do
# Version with double (mock)
it "processes an incoming email and creates a bookmark" do
bm_count = Bookmark.count
email = double(:email)
email.stub(:subject) { "history,math" }
email.stub(:body) { "This is the body." }
EmailProcessor.process(email)
expect(Bookmark.count).to eq(bm_count + 1)
end
# Version with factory
it "processes an incoming email and creates a bookmark" do
bm_count = Bookmark.count
email = create(:email)
EmailProcessor.process(email)
expect(Bookmark.count).to eq(bm_count + 1)
end
end
@barnes7td
Copy link
Author

I commented out the to and from in the factory, b/c they are not needed in this spec.

You have to give the factory a class and in this case we just used and Open Struct which a base Ruby class similar to a generic class. The email class is inside the griddler gem (engine) and we don't have access to it. So we use a generic OpenStruct.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment