scinote-web/spec/models/repository_row_spec.rb
Urban Rotnik 3adf2bb736 Add factories and validation tests for repositories and related models
Repositories, cells, columns, values (date, text, asset, list), rows, items
2019-06-10 12:24:02 +02:00

45 lines
1.3 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe RepositoryRow, type: :model do
let(:repository_row) { build :repository_row }
it 'is valid' do
expect(repository_row).to be_valid
end
it 'should be of class RepositoryRow' do
expect(subject.class).to eq RepositoryRow
end
describe 'Database table' do
it { should have_db_column :repository_id }
it { should have_db_column :created_by_id }
it { should have_db_column :last_modified_by_id }
it { should have_db_column :name }
it { should have_db_column :created_at }
it { should have_db_column :updated_at }
end
describe 'Relations' do
it { should belong_to :repository }
it { should belong_to(:created_by).class_name('User') }
it { should belong_to(:last_modified_by).class_name('User') }
it { should have_many :repository_cells }
it { should have_many :repository_columns }
it { should have_many :my_module_repository_rows }
it { should have_many :my_modules }
end
describe 'Validations' do
describe '#name' do
it { is_expected.to validate_presence_of :name }
it { is_expected.to(validate_length_of(:name).is_at_most(Constants::NAME_MAX_LENGTH)) }
end
describe '#created_by' do
it { is_expected.to validate_presence_of :created_by }
end
end
end