blob: 7fe3a879232cb4fce07aa28964cf57cafca063e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Company, type: :model do
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) }
end
|