Sha256: c17ebaa2711ac7ad632befec507a3238c2f83d0fd01349fc6e22f65c3381c49d
Contents?: true
Size: 1.91 KB
Versions: 15
Compression:
Stored size: 1.91 KB
Contents
require 'spec_helper' describe Mdm::Ref do context 'associations' do # shoulda matchers don't have support for :primary_key option, so need to # test this association manually context 'module_refs' do context 'with Mdm::Module::Refs' do context 'with same name' do let(:name) do FactoryGirl.generate :mdm_ref_name end let!(:module_ref) do FactoryGirl.create(:mdm_module_ref, :name => name) end let!(:ref) do FactoryGirl.create(:mdm_ref, :name => name) end it 'should have module_refs in assocation' do ref.module_refs.should =~ [module_ref] end end end end # @todo https://www.pivotaltracker.com/story/show/48915453 it { should have_many(:vulns_refs).class_name('Mdm::VulnRef') } it { should have_many(:vulns).class_name('Mdm::Vuln').through(:vulns_refs) } end context 'database' do context 'columns' do it { should have_db_column(:name).of_type(:string) } it { should have_db_column(:ref_id).of_type(:integer) } context 'timestamps' do it { should have_db_column(:created_at).of_type(:datetime) } it { should have_db_column(:updated_at).of_type(:datetime) } end end context 'indices' do it { should have_db_index(:name) } end end context 'factories' do context 'mdm_ref' do subject(:mdm_ref) do FactoryGirl.build :mdm_ref end it { should be_valid } end end context '#destroy' do it 'should successfully destroy the object' do mdm_ref = FactoryGirl.create(:mdm_ref) expect { mdm_ref.destroy }.to_not raise_error expect { mdm_ref.reload }.to raise_error(ActiveRecord::RecordNotFound) end end context 'mass assignment security' do it { should allow_mass_assignment_of(:name) } end end
Version data entries
15 entries across 15 versions & 1 rubygems