scinote-web/spec/models/sample_custom_field_spec.rb
2017-08-30 13:30:41 +02:00

30 lines
839 B
Ruby

require 'rails_helper'
describe SampleCustomField, type: :model do
it 'should be of class SampleCustomField' do
expect(subject.class).to eq SampleCustomField
end
describe 'Database table' do
it { should have_db_column :value }
it { should have_db_column :custom_field_id }
it { should have_db_column :sample_id }
it { should have_db_column :created_at }
it { should have_db_column :updated_at }
end
describe 'Relations' do
it { should belong_to :custom_field }
it { should belong_to :sample }
end
describe 'Should be a valid object' do
it { should validate_presence_of :value }
it { should validate_presence_of :custom_field }
it { should validate_presence_of :sample }
it do
should validate_length_of(:value).is_at_most(Constants::NAME_MAX_LENGTH)
end
end
end