4 changed files with 73 additions and 42 deletions
@ -0,0 +1,13 @@
|
||||
module Configuration |
||||
class EnvConfigurationService < ConfigurationService |
||||
private |
||||
|
||||
def config_present? |
||||
raise NotImplementedError |
||||
end |
||||
|
||||
def read_config |
||||
raise NotImplementedError |
||||
end |
||||
end |
||||
end |
@ -0,0 +1,17 @@
|
||||
require "rails_helper" |
||||
|
||||
Rspec.describe Configuration::EnvConfigurationService do |
||||
before do |
||||
# Do nothing |
||||
end |
||||
|
||||
after do |
||||
# Do nothing |
||||
end |
||||
|
||||
context 'when condition' do |
||||
it 'succeeds' do |
||||
pending 'Not implemented' |
||||
end |
||||
end |
||||
end |
Loading…
Reference in new issue