mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
12 lines
266 B
Ruby
12 lines
266 B
Ruby
require 'rails_helper'
|
|
|
|
describe Settings, type: :model do
|
|
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
|