Skip to content

Instantly share code, notes, and snippets.

@ppdeassis
ppdeassis / model_spec.rb
Last active December 17, 2015 08:09
Template for a Model spec
require 'spec_helper'
describe Person do
# NOTE: build, create and attributes_for are FactoryGirl methods
# You should include this line in spec_helper to make them available
# without FactoryGirl. (prefix):
# ---
# Rspec.configure do |config|
# ...