Sha256: d68b88a6fbe80af4daa4c1a744786c271d933ac3638a8cb544b2abdffdbc0a1b

Contents?: true

Size: 774 Bytes

Versions: 3

Compression:

Stored size: 774 Bytes

Contents

require 'spec_helper'

describe Astrails::Safe::Svndump do
  def def_config
    {
      :options => "OPTS",
      :repo_path => "bar/baz"
    }
  end

  def svndump(id = :foo, config = def_config)
    Astrails::Safe::Svndump.new(id, Astrails::Safe::Config::Node.new(nil, config))
  end

  before(:each) do
    stub(Time).now.stub!.strftime {"NOW"}
  end

  after(:each) { Astrails::Safe::TmpFile.cleanup }

  describe :backup do
    before(:each) do
      @svn = svndump
    end

    {
      :id => "foo",
      :kind => "svndump",
      :extension => ".svn",
      :filename => "svndump-foo.NOW",
      :command => "svnadmin dump OPTS bar/baz",
    }.each do |k, v|
      it "should set #{k} to #{v}" do
        @svn.backup.send(k).should == v
      end
    end

  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
akupchanko-astrails-safe-0.3.1 spec/astrails/safe/svndump_spec.rb
astrails-safe-0.3.1 spec/unit/svndump_spec.rb
astrails-safe-0.3.0 spec/unit/svndump_spec.rb