# frozen_string_literal: true require 'rails_helper' RSpec.describe Address, type: :model do it { should validate_presence_of(:number) } it { should validate_presence_of(:street) } it { should validate_presence_of(:zip_code) } it { should validate_presence_of(:country) } it { should validate_presence_of(:city) } describe 'number' do it 'should be greater than or equal to 0' do address = build(:address, number: -1) expect(address.save).to be_falsey end end describe 'country' do it 'should be a valid country' do address = build(:address, country: 'Not a country') expect(address.save).to be_falsey end end end