Sha256: 30eed4d714207e2d0ef694a37540d439d5ed29fc017096544addc5b0fc6df682

Contents?: true

Size: 419 Bytes

Versions: 1

Compression:

Stored size: 419 Bytes

Contents

# encoding: utf-8

require File.expand_path('../../../spec_helper.rb', __FILE__)

describe Backup::Configuration::Database::Base do
  before do
    Backup::Configuration::Database::Base.defaults do |db|
      db.utility_path = '/usr/bin/my_util'
    end
  end

  it 'should set the default Base configuration' do
    db = Backup::Configuration::Database::Base
    db.utility_path.should == '/usr/bin/my_util'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
backup-3.0.20 spec/configuration/database/base_spec.rb