Sha256: 9790852c7490aa25f5e98604e1384d2a36955e8bdafc5c147540a0fcfae5d0d8
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
# encoding: utf-8 require File.expand_path('../../../spec_helper.rb', __FILE__) describe Backup::Configuration::Database::PostgreSQL do before do Backup::Configuration::Database::PostgreSQL.defaults do |db| db.name = 'mydb' db.username = 'myuser' db.password = 'mypassword' db.host = 'myhost' db.port = 'myport' db.socket = 'mysocket' db.skip_tables = %w[my tables] db.only_tables = %w[my other tables] db.additional_options = %w[my options] end end it 'should set the default PostgreSQL configuration' do db = Backup::Configuration::Database::PostgreSQL db.name.should == 'mydb' db.username.should == 'myuser' db.password.should == 'mypassword' db.host.should == 'myhost' db.port.should == 'myport' db.socket.should == 'mysocket' db.skip_tables.should == %w[my tables] db.only_tables.should == %w[my other tables] db.additional_options.should == %w[my options] end describe '#clear_defaults!' do it 'should clear all the defaults, resetting them to nil' do Backup::Configuration::Database::PostgreSQL.clear_defaults! db = Backup::Configuration::Database::PostgreSQL db.name.should == nil db.username.should == nil db.password.should == nil db.host.should == nil db.port.should == nil db.socket.should == nil db.skip_tables.should == nil db.only_tables.should == nil db.additional_options.should == nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backup-3.0.20 | spec/configuration/database/postgresql_spec.rb |