From 5c899df07753a31543f8dad725a26ccddc44dfe2 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Mon, 13 Mar 2023 19:48:40 -0600 Subject: Añade método update a UserAccountsController MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spec/models/company_spec.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'spec/models') diff --git a/spec/models/company_spec.rb b/spec/models/company_spec.rb index 7fe3a87..0d254a8 100644 --- a/spec/models/company_spec.rb +++ b/spec/models/company_spec.rb @@ -3,9 +3,17 @@ require 'rails_helper' RSpec.describe Company, type: :model do + let(:company) { create(:company) } + it { should validate_presence_of(:name) } it { should validate_presence_of(:short_name) } it { should validate_presence_of(:country) } it { should validate_uniqueness_of(:short_name).ignoring_case_sensitivity } it { should have_one_attached(:logo) } + + describe '#to_param' do + it "returns the model's url param" do + expect(company.to_param).to eq(company.short_name) + end + end end -- cgit v1.2.3