mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
13 lines
266 B
Ruby
13 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
|