require 'spec_helper' require 'pathname' require 'fileutils' describe Evrone::CI::Worker::Docker do let(:options) { { } } let(:job) { create :job, options } let(:path) { '/tmp/.ci' } let(:local) { described_class.new job, path } subject { local } after { FileUtils.rm_rf path } context "perform", run_docker: true do subject { local.perform } it { should eq 0 } context "when fail before_script" do let(:options) { { before_script: "/bin/false" } } it { should eq(-1) } end context "when fail script" do let(:options) { { script: "/bin/false" } } it { should eq(1) } end end end