Sha256: da15b68cf51009a7d911f8d3fee59c0a619ab8f337bdbeec53aee50165e6e471
Contents?: true
Size: 968 Bytes
Versions: 58
Compression:
Stored size: 968 Bytes
Contents
require 'spec_helper' describe Mdm::Module::Platform do it_should_behave_like 'Metasploit::Concern.run' context 'associations' do it { should belong_to(:detail).class_name('Mdm::Module::Detail') } end context 'database' do context 'columns' do it { should have_db_column(:detail_id).of_type(:integer) } it { should have_db_column(:name).of_type(:text) } end context 'indices' do it { should have_db_index(:detail_id) } end end context 'factories' do context 'mdm_module_platform' do subject(:mdm_module_platform) do FactoryGirl.build :mdm_module_platform end it { should be_valid } end end context 'mass assignment security' do it { should_not allow_mass_assignment_of(:detail_id) } it { should allow_mass_assignment_of(:name) } end context 'validations' do it { should validate_presence_of :detail } it { should validate_presence_of :name } end end
Version data entries
58 entries across 58 versions & 1 rubygems