scinote-web/spec/models/settings_spec.rb

21 lines
394 B
Ruby
Raw Normal View History

2019-05-09 23:10:02 +08:00
# frozen_string_literal: true
2017-08-30 00:49:07 +08:00
require 'rails_helper'
describe Settings, type: :model do
2019-05-09 23:10:02 +08:00
let(:settings) { build :settings }
it 'is valid' do
expect(settings).to be_valid
end
2017-08-30 00:49:07 +08:00
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