Files
nairobi/spec/models/identity_spec.rb
Javi Martín 05757c7f02 Add and apply RSpec/Rails/InferredSpecType rule
This rule was added in rubocop-rspec 2.14.0.
2023-09-06 19:00:56 +02:00

10 lines
152 B
Ruby

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