Skip to content

Instantly share code, notes, and snippets.

@wojtekmach
Last active December 27, 2015 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wojtekmach/7236318 to your computer and use it in GitHub Desktop.
Save wojtekmach/7236318 to your computer and use it in GitHub Desktop.
require 'factory_girl'
class Article < Struct.new :headline
end
FactoryGirl.define do
factory :article do
headline "my headline"
end
end
describe Article do
it do
article = FactoryGirl.build :article
article.headline.upcase!
article.headline.should == 'MY HEADLINE'
end
it do
article = FactoryGirl.build :article
article.headline.should == 'my headline'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment