Created
December 29, 2015 04:15
-
-
Save eladg/9a6db10890ba5d04c037 to your computer and use it in GitHub Desktop.
rspec model popular describe block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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