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