Files
nairobi/spec/models/identity_spec.rb
2015-08-24 20:24:10 +02:00

10 lines
173 B
Ruby

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