Skip to content

Instantly share code, notes, and snippets.

@jamesalmond
Created May 10, 2010 12:59
Show Gist options
  • Save jamesalmond/396015 to your computer and use it in GitHub Desktop.
Save jamesalmond/396015 to your computer and use it in GitHub Desktop.
# before
Factory.define :base_post, :class => Post do |h|
h.name "Demo"
...
end
#after
Factory.define :base_post, :class => "Post" do |h|
h.name "Demo"
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment