Sha256: e15ea54e50df15eeff40df1260e03e148d51b959b9d32e379537b54cd6056261
Contents?: true
Size: 1.16 KB
Versions: 24
Compression:
Stored size: 1.16 KB
Contents
require 'spec_helper' describe Mdm::SessionEvent do context 'associations' do it { should belong_to(:session).class_name('Mdm::Session') } end context 'factory' do it 'should be valid' do session_event = FactoryGirl.build(:mdm_session_event) session_event.should be_valid end end context '#destroy' do it 'should successfully destroy the object' do session_event = FactoryGirl.create(:mdm_session_event) expect { session_event.destroy }.to_not raise_error expect { session_event.reload }.to raise_error(ActiveRecord::RecordNotFound) end end context 'database' do context 'timestamps'do it { should have_db_column(:created_at).of_type(:datetime) } end context 'columns' do it { should have_db_column(:session_id).of_type(:integer) } it { should have_db_column(:etype).of_type(:string) } it { should have_db_column(:command).of_type(:binary) } it { should have_db_column(:output).of_type(:binary) } it { should have_db_column(:remote_path).of_type(:string) } it { should have_db_column(:local_path).of_type(:string) } end end end
Version data entries
24 entries across 24 versions & 1 rubygems