Sha256: 606ebdd097ee61aa8d75c02ab66fe820d7fb5eff59ce627d88106defaa0b55f5
Contents?: true
Size: 1.39 KB
Versions: 60
Compression:
Stored size: 1.39 KB
Contents
require 'spec_helper' describe Mdm::ExploitedHost do it_should_behave_like 'Metasploit::Concern.run' context 'associations' do it { should belong_to(:host).class_name('Mdm::Host') } it { should belong_to(:service).class_name('Mdm::Service') } end context 'database' do context 'timestamps'do it { should have_db_column(:created_at).of_type(:datetime).with_options(:null => false) } it { should have_db_column(:updated_at).of_type(:datetime).with_options(:null => false) } end context 'columns' do it { should have_db_column(:host_id).of_type(:integer).with_options(:null => false) } it { should have_db_column(:service_id).of_type(:integer) } it { should have_db_column(:name).of_type(:string) } it { should have_db_column(:session_uuid).of_type(:string) } it { should have_db_column(:payload).of_type(:string) } end end context '#destroy' do it 'should successfully destroy the object and all dependent objects' do exploited_host = FactoryGirl.create(:mdm_exploited_host) expect { exploited_host.destroy }.to_not raise_error expect { exploited_host.reload }.to raise_error(ActiveRecord::RecordNotFound) end end context 'factory' do it 'should be valid' do exploited_host = FactoryGirl.build(:mdm_exploited_host) exploited_host.should be_valid end end end
Version data entries
60 entries across 60 versions & 1 rubygems