Merge branch 'master' of github.com:domify/registry

This commit is contained in:
Martin Lensment 2015-08-11 11:42:05 +03:00
commit 6a3344eeaf
3 changed files with 4 additions and 2 deletions

View file

@ -92,6 +92,8 @@ module Depp
rescue OpenSSL::SSL::SSLError => e
Rails.logger.error "INVALID CERT: #{e}"
Rails.logger.error "INVALID CERT DEBUG INFO: epp_hostname: #{ENV['epp_hostname']}," \
"port: #{ENV['epp_port']}, cert_path: #{ENV['cert_path']}, key_path: #{ENV['key_path']}"
errors.add(:base, :invalid_cert)
end
end

View file

@ -1858,8 +1858,6 @@ describe 'EPP Domain', epp: true do
it 'should not allow any update when status force delete' do
domain.set_force_delete
existing_pw = domain.auth_info
xml_params = {
name: { value: domain.name },
chg: [

View file

@ -67,6 +67,8 @@ describe BankStatement do
a.sum.should == BigDecimal.new('200.0')
a.activity_type = AccountActivity::ADD_CREDIT
r.reload
r.cash_account.reload
r.cash_account.balance.should == 200.0
bs.bank_transactions.unbinded.count.should == 1