Files
nairobi/spec/models/identity_spec.rb
2019-02-15 11:40:39 +01:00

10 lines
166 B
Ruby

require "rails_helper"
RSpec.describe Identity, type: :model do
let(:identity) { build(:identity) }
it "is valid" do
expect(identity).to be_valid
end
end