Sha256: 9b50d4326aadacc44479a790faa6b6de997566acd6691afcc15b22f67818d606
Contents?: true
Size: 400 Bytes
Versions: 13
Compression:
Stored size: 400 Bytes
Contents
require "spec_helper" require "octopolo/scripts/new_deployable" module Octopolo module Scripts describe NewDeployable do subject { NewDeployable.new } context "#execute" do it "delegates the work to DatedBranchCreator" do DatedBranchCreator.should_receive(:perform).with(Git::DEPLOYABLE_PREFIX) subject.execute end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems