Skip to content

Instantly share code, notes, and snippets.

@eladg
Created December 29, 2015 04:15
Show Gist options
  • Save eladg/9a6db10890ba5d04c037 to your computer and use it in GitHub Desktop.
Save eladg/9a6db10890ba5d04c037 to your computer and use it in GitHub Desktop.
rspec model popular describe block
require 'rails_helper'
RSpec.describe Project, type: :model do
let(:model) { described_class }
describe 'validation' do
end
describe "associations" do
end
describe "scopes" do
end
describe "methods" do
end
describe "callbacks" do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment