mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
857bda6f69
- Models tests - Controllers tests - Jobs tests - Permissions tests - Utilities tests
26 lines
636 B
Ruby
26 lines
636 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe Settings, type: :model do
|
|
let(:settings) { build(:settings) }
|
|
let(:application_settings) { build(:settings, :with_load_values_from_env_defined) }
|
|
|
|
it 'raises not NotImplementedError' do
|
|
expect { settings.load_values_from_env }.to raise_error(NotImplementedError)
|
|
end
|
|
|
|
|
|
it 'is valid' do
|
|
expect(application_settings).to be_valid
|
|
end
|
|
|
|
it 'should be of class Settings' do
|
|
expect(application_settings.class).to eq Settings
|
|
end
|
|
|
|
describe 'Database table' do
|
|
it { should have_db_column :type }
|
|
it { should have_db_column :values }
|
|
end
|
|
end
|