Sha256: 67cd14a2300de6a778fc41ea4cf34bfbbde4b719c88a7758f03959ac69aa478a
Contents?: true
Size: 1.06 KB
Versions: 24
Compression:
Stored size: 1.06 KB
Contents
require 'spec_helper' describe Mdm::VulnRef do context 'factories' do context 'mdm_vuln_ref' do subject(:mdm_vuln_ref) do FactoryGirl.build(:mdm_vuln_ref) end it { should be_valid } end end context 'database' do context 'columns' do it { should have_db_column(:id).of_type(:integer) } it { should have_db_column(:ref_id).of_type(:integer) } it { should have_db_column(:vuln_id).of_type(:integer) } end end context 'associations' do it { should belong_to(:vuln).class_name('Mdm::Vuln') } it { should belong_to(:ref).class_name('Mdm::Ref') } end context 'factory' do it 'should be valid' do vuln_ref = FactoryGirl.build(:mdm_vuln_ref) vuln_ref.should be_valid end end context '#destroy' do it 'should successfully destroy the object' do vuln_ref = FactoryGirl.create(:mdm_vuln_ref) expect { vuln_ref.destroy }.to_not raise_error expect { vuln_ref.reload }.to raise_error(ActiveRecord::RecordNotFound) end end end
Version data entries
24 entries across 24 versions & 1 rubygems