Sha256: bd07fa3c834a4e2d234a2a44f5a26622ad669cd779cc32db18c89e4215332fe5
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
# encoding: utf-8 require File.expand_path('../../../spec_helper.rb', __FILE__) describe Backup::Configuration::Storage::FTP do before do Backup::Configuration::Storage::FTP.defaults do |ftp| ftp.username = 'my_username' ftp.password = 'my_password' ftp.ip = '123.45.678.90' ftp.port = 21 ftp.path = 'my_backups' ftp.keep = 20 ftp.passive_mode = false end end it 'should set the default ftp configuration' do ftp = Backup::Configuration::Storage::FTP ftp.username.should == 'my_username' ftp.password.should == 'my_password' ftp.ip.should == '123.45.678.90' ftp.port.should == 21 ftp.path.should == 'my_backups' ftp.keep.should == 20 ftp.passive_mode == false end describe '#clear_defaults!' do it 'should clear all the defaults, resetting them to nil' do Backup::Configuration::Storage::FTP.clear_defaults! ftp = Backup::Configuration::Storage::FTP ftp.username.should == nil ftp.password.should == nil ftp.ip.should == nil ftp.port.should == nil ftp.path.should == nil ftp.keep.should == nil ftp.passive_mode.should == nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backup-3.0.20 | spec/configuration/storage/ftp_spec.rb |