spec/unit/scope_spec.rb in a9n-0.7.0 vs spec/unit/scope_spec.rb in a9n-0.8.0
- old
+ new
@@ -11,17 +11,17 @@
let(:name) { 'configuration' }
it { expect(subject).to be_root }
end
context 'when name is other than configuration' do
- let(:name) { 'mandrill' }
+ let(:name) { 'google' }
it { expect(subject).not_to be_root }
end
end
describe '.form_file_path' do
- let(:path) { 'config/a9n/mandrill.yml.example' }
+ let(:path) { 'config/a9n/google.yml.example' }
subject { described_class.form_file_path(path) }
- it { expect(subject.name).to eq(:mandrill) }
+ it { expect(subject.name).to eq(:google) }
end
end