spec/commands/installer_spec.rb in taperole-2.0.6 vs spec/commands/installer_spec.rb in taperole-2.0.7

- old
+ new

@@ -28,12 +28,12 @@ it 'creates deploy.yml' do expect(taperole).to include('deploy.yml') end - it 'creates omnibox.yml' do - expect(taperole).to include('omnibox.yml') + it 'creates provision.yml' do + expect(taperole).to include('provision.yml') end it 'creates tape_vars.yml' do expect(taperole).to include('tape_vars.yml') end @@ -44,12 +44,12 @@ it 'creates deploy.yml' do expect(taperole).to include('deploy.yml') end - it 'creates omnibox.yml' do - expect(taperole).to include('omnibox.yml') + it 'creates provision.yml' do + expect(taperole).to include('provision.yml') end it 'creates tape_vars.yml' do expect(taperole).to include('tape_vars.yml') end @@ -69,22 +69,22 @@ end describe '#uninstall' do let(:setup) do Dir.mkdir("#{Dir.pwd}/taperole") - FileUtils.touch("#{Dir.pwd}/taperole/omnibox.yml") + FileUtils.touch("#{Dir.pwd}/taperole/provision.yml") FileUtils.touch("#{Dir.pwd}/taperole/deploy.yml") FileUtils.touch("#{Dir.pwd}/taperole/tape_vars.yml") FileUtils.touch("#{Dir.pwd}/taperole/rake.yml") FileUtils.touch("#{Dir.pwd}/taperole/roles") FileUtils.touch("#{Dir.pwd}/taperole/hosts") FileUtils.touch("#{Dir.pwd}/taperole/dev_keys") FileUtils.touch("#{Dir.pwd}/Vagrantfile") end let(:command) { :uninstall } - it 'removes omnibox.yml' do - expect(taperole).to_not include('omnibox.yml') + it 'removes provision.yml' do + expect(taperole).to_not include('provision.yml') end it 'removes deploy.yml' do expect(taperole).to_not include('deploy.yml') end