From 043ece68f42c96644792aecefaa23522c6fc85f7 Mon Sep 17 00:00:00 2001 From: yqbk Date: Sun, 16 Oct 2016 16:55:24 +0200 Subject: [PATCH] enable container tests --- spec/lib/docker_client_spec.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spec/lib/docker_client_spec.rb b/spec/lib/docker_client_spec.rb index ff36f5ff..8ff97bc1 100644 --- a/spec/lib/docker_client_spec.rb +++ b/spec/lib/docker_client_spec.rb @@ -26,9 +26,9 @@ describe DockerClient, docker: true do end describe '.container_creation_options' do - it "is TODO" do - pending("heavy load on the docker daemon") - end + # it "is TODO" do + # pending("heavy load on the docker daemon") + # end let(:container_creation_options) { described_class.container_creation_options(execution_environment) } @@ -163,9 +163,9 @@ describe DockerClient, docker: true do end describe '.destroy_container' do - it "is TODO" do - pending("heavy load on the docker daemon") - end + # it "is TODO" do + # pending("heavy load on the docker daemon") + # end let(:container) { described_class.create_container(execution_environment) } after(:each) { described_class.destroy_container(container) }