spec/unit/docker_client_spec.rb in vocker-0.4.0 vs spec/unit/docker_client_spec.rb in vocker-0.4.1
- old
+ new
@@ -87,10 +87,10 @@
it 'allows additional params to be passed to the run command' do
expect(communicator).to have_received.sudo(with{|cmd| cmd =~ /some parameter/})
end
end
- context 'when the container already exists' do
+ pending 'when the container already exists' do
before do
stub(communicator).test(with{|cmd| cmd =~ /docker ps -a -q/}) { true }
end
it 'starts the container if it is stopped' do