require_relative 'spec_helper' describe 'Integration tests' do before(:each) do docker_needed! end describe 'compose:deploy' do describe 'hello world image (old config)' do let :path do 'integration/compose_hello_world_old_config' end it 'runs successfully' do bundle_exec 'compose:deploy' end end describe 'hello world image (new config)' do let :path do 'integration/compose_hello_world_new_config' end it 'runs successfully' do bundle_exec 'compose:deploy' end end end end