Projet

Général

Profil

0001-misc-remove-references-to-sips-32224.patch

Benjamin Dauvergne, 28 juin 2022 17:06

Télécharger (1,97 ko)

Voir les différences:

Subject: [PATCH 1/4] misc: remove references to sips (#32224)

It broke get_backends().
 eopayment/__init__.py |  3 +--
 tests/test_misc.py    | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+), 2 deletions(-)
 create mode 100644 tests/test_misc.py
eopayment/__init__.py
64 64
    'MOLLIE',
65 65
]
66 66

  
67
SIPS = 'sips'
68 67
SIPS2 = 'sips2'
69 68
SYSTEMPAY = 'systempayv2'
70 69
TIPI = 'tipi'
......
86 85
    return module.Payment
87 86

  
88 87

  
89
__BACKENDS = [DUMMY, SIPS, SIPS2, SYSTEMPAY, OGONE, PAYBOX, PAYZEN, TIPI, PAYFIP_WS, KEYWARE, MOLLIE, SAGA]
88
__BACKENDS = [DUMMY, SIPS2, SYSTEMPAY, OGONE, PAYBOX, PAYZEN, TIPI, PAYFIP_WS, KEYWARE, MOLLIE, SAGA]
90 89

  
91 90

  
92 91
def get_backends():
tests/test_misc.py
1
# eopayment - online payment library
2
# Copyright (C) 2011-2022 Entr'ouvert
3
#
4
# This program is free software: you can redistribute it and/or modify it
5
# under the terms of the GNU Affero General Public License as published
6
# by the Free Software Foundation, either version 3 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU Affero General Public License for more details.
13
#
14
# You should have received a copy of the GNU Affero General Public License
15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16

  
17

  
18
import eopayment
19

  
20

  
21
def test_get_backends():
22
    assert len(eopayment.get_backends()) > 1
0
-