adds Identity model and migration

This commit is contained in:
David Gil
2015-08-24 19:42:51 +02:00
parent 88eb8a6cc4
commit f0e47ee787
6 changed files with 70 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
require 'rails_helper'
RSpec.describe Identity, type: :model do
let(:identity) { build(:identity) }
it "should be valid" do
expect(identity).to be_valid
end
end