Sha256: bfc0eda2e46f3aa73529a5919e1f9572663d2d2f4f80dc006347de87df0c4897
Contents?: true
Size: 1.07 KB
Versions: 5
Compression:
Stored size: 1.07 KB
Contents
require 'spec_helper' describe Mdm::ModuleTarget do context 'associations' do it { should belong_to(:module_detail).class_name('Mdm::ModuleDetail') } end context 'database' do context 'columns' do it { should have_db_column(:index).of_type(:integer) } it { should have_db_column(:module_detail_id).of_type(:integer) } it { should have_db_column(:name).of_type(:text) } end context 'indices' do it { should have_db_index(:module_detail_id) } end end context 'factories' do context 'mdm_module_target' do subject(:mdm_module_target) do FactoryGirl.build :mdm_module_target end it { should be_valid } end end context 'mass assignment security' do it { should allow_mass_assignment_of(:index) } it { should_not allow_mass_assignment_of(:module_detail_id) } it { should allow_mass_assignment_of(:name) } end context 'validations' do it { should validate_presence_of(:index) } it { should validate_presence_of(:module_detail) } it { should validate_presence_of(:name) } end end
Version data entries
5 entries across 5 versions & 1 rubygems