Sha256: f4d1ec77a60ee9363ba4ff0f8a7e38db6f6d84f571421b2a7fd2f2faf6327d5b

Contents?: true

Size: 1.28 KB

Versions: 17

Compression:

Stored size: 1.28 KB

Contents

#
# Copyright 2012 Mortar Data Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require "spec_helper"
require "mortar/helpers"

module Mortar
  describe Snapshot do
    include Mortar::Helpers
    include Mortar::Snapshot

    before(:each) do
      @git = Mortar::Git::Git.new
    end
    
    it "create and push a snapshot to the remote repository" do
      with_git_initialized_project do |p|
        # stub git
        mock(@git).push("mortar", is_a(String))
        mock.proxy(@git).create_snapshot_branch
        
        stub(self).display
        
        initial_git_branches = @git.branches
        create_and_push_snapshot_branch(@git, p)
        
        # ensure that no additional branches are left behind
        @git.branches.should == initial_git_branches
      end
    end
    
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
mortar-0.6.1 spec/mortar/snapshot_spec.rb
mortar-0.6.0 spec/mortar/snapshot_spec.rb
mortar-0.5.1 spec/mortar/snapshot_spec.rb
mortar-0.5.0 spec/mortar/snapshot_spec.rb
mortar-0.4.4 spec/mortar/snapshot_spec.rb
mortar-0.4.3 spec/mortar/snapshot_spec.rb
mortar-0.4.2 spec/mortar/snapshot_spec.rb
mortar-0.4.1 spec/mortar/snapshot_spec.rb
mortar-0.4.0 spec/mortar/snapshot_spec.rb
mortar-0.3.4 spec/mortar/snapshot_spec.rb
mortar-0.3.3 spec/mortar/snapshot_spec.rb
mortar-0.3.2 spec/mortar/snapshot_spec.rb
mortar-0.3.1 spec/mortar/snapshot_spec.rb
mortar-0.3.0 spec/mortar/snapshot_spec.rb
mortar-0.2.1 spec/mortar/snapshot_spec.rb
mortar-0.2.0 spec/mortar/snapshot_spec.rb
mortar-0.1.0 spec/mortar/snapshot_spec.rb