Sha256: 77d5293bd733d325ad82d50020ec5258553d8a370b0331f1a5a690fa121dcf65
Contents?: true
Size: 1.92 KB
Versions: 9
Compression:
Stored size: 1.92 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 expect(ref.module_refs).to match_array([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
9 entries across 9 versions & 1 rubygems