Sha256: 50a647a62d693b73f196d781f08c5b5f672d735269aa53a5984d4965635f15fc
Contents?: true
Size: 1.58 KB
Versions: 60
Compression:
Stored size: 1.58 KB
Contents
require 'spec_helper' describe Mdm::TaskService do it_should_behave_like 'Metasploit::Concern.run' context 'factory' do it 'should be valid' do task_service = FactoryGirl.build(:mdm_task_service) task_service.should be_valid end 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(:task_id).of_type(:integer).with_options(:null => false) } it { should have_db_column(:service_id).of_type(:integer).with_options(:null => false) } end end context '#destroy' do it 'should successfully destroy the object' do task_service = FactoryGirl.create(:mdm_task_service) expect { task_service.destroy }.to_not raise_error expect { task_service.reload }.to raise_error(ActiveRecord::RecordNotFound) end end context "Associations" do it { should belong_to(:task).class_name('Mdm::Task') } it { should belong_to(:service).class_name('Mdm::Service') } end context "validations" do it "should not allow duplicate associations" do task = FactoryGirl.build(:mdm_task) service = FactoryGirl.build(:mdm_service) FactoryGirl.create(:mdm_task_service, :task => task, :service => service) task_service2 = FactoryGirl.build(:mdm_task_service, :task => task, :service => service) task_service2.should_not be_valid end end end
Version data entries
60 entries across 60 versions & 1 rubygems