Sha256: f054c7cc5e6c5ab61bfb8921670eb7371e27e8b0b41e91398876a048cac5f7ca
Contents?: true
Size: 498 Bytes
Versions: 4
Compression:
Stored size: 498 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' # deprecated end end after { Backup::Configuration::Database::Base.clear_defaults! } 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
4 entries across 4 versions & 2 rubygems