spec/app42/command/app_spec.rb in app42-0.5.5 vs spec/app42/command/app_spec.rb in app42-0.5.6
- old
+ new
@@ -57,20 +57,20 @@
response = App42::Command::Base.new.app_operation 'restart', @app_name
response.should eql true
end
it 'Should return correct app information json' do
- respone = App42::Command::Base.new.app_information 'info', @app_name
+ response = App42::Command::Base.new.app_information 'info', @app_name
path = "#{APP_ROOT}/app42/spec/data/info.yml"
info = YAML.load_file(path)
- respone.should eql info
+ response.should eql info
end
it 'Should return correct app state json' do
- respone = App42::Command::Base.new.app_information 'state', @app_name
+ response = App42::Command::Base.new.app_information 'state', @app_name
path = "#{APP_ROOT}/app42/spec/data/state.yml"
info = YAML.load_file(path)
- respone.should eql info
+ response.should eql info
end
it 'Should delete app:' do
response = App42::Command::Base.new.app_operation 'delete', @app_name
response.should eql true