scinote-web/spec/models/wopi_action_spec.rb
2017-08-30 13:30:41 +02:00

26 lines
677 B
Ruby

require 'rails_helper'
describe WopiAction, type: :model do
it 'should be of class WopiAction' do
expect(subject.class).to eq WopiAction
end
describe 'Database table' do
it { should have_db_column :action }
it { should have_db_column :extension }
it { should have_db_column :urlsrc }
it { should have_db_column :wopi_app_id }
end
describe 'Relations' do
it { should belong_to(:wopi_app) }
end
describe 'Should be a valid object' do
it { should validate_presence_of :action }
it { should validate_presence_of :extension }
it { should validate_presence_of :urlsrc }
it { should validate_presence_of :wopi_app }
end
end