rating/spec/config/rate_table_spec.rb

16 lines
391 B
Ruby

# frozen_string_literal: true
RSpec.describe Rating::Config, '.rate_table' do
if ENV['CONFIG_ENABLED'] != 'true'
context 'when rating.yml does not exist' do
it { expect(subject.rate_table).to eq 'rating_rates' }
end
end
if ENV['CONFIG_ENABLED'] == 'true'
context 'when rating.yml exists' do
it { expect(subject.rate_table).to eq 'reviews' }
end
end
end