describe '#method' rather than describe '.method' for instance methods

This commit is contained in:
Frederic Merizen 2018-03-20 16:00:30 +01:00
parent 5c9e5018f1
commit 13d251d970
16 changed files with 32 additions and 32 deletions

View file

@ -7,7 +7,7 @@ describe Individual do
it { is_expected.to have_db_column(:birthdate) }
it { is_expected.to belong_to(:dossier) }
describe ".save" do
describe "#save" do
let(:individual) { build(:individual) }
subject { individual.save }