scinote-web/spec/models/settings_spec.rb
2019-06-10 12:24:04 +02:00

21 lines
394 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
describe Settings, type: :model do
let(:settings) { build :settings }
it 'is valid' do
expect(settings).to be_valid
end
it 'should be of class Settings' do
expect(subject.class).to eq Settings
end
describe 'Database table' do
it { should have_db_column :type }
it { should have_db_column :values }
end
end