source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_payment.py @ 15517

Last change on this file since 15517 was 10030, checked in by Henrik Bettermann, 12 years ago

Use better class names. The PaymentWebservice? adapter is not a webservice. KofaPaymentRequest? is not a request but a view for a simple web service.

We do not publish the data of the payee but of the payer.

  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1## $Id: test_payment.py 10030 2013-03-17 08:40:59Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 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 General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""Tests for application payments.
19
20"""
21import unittest
22from zope.interface import verify
23from waeup.kofa.applicants.payment import (
24    ApplicantOnlinePayment, ApplicantOnlinePaymentFactory, Payer)
25from waeup.kofa.payments.interfaces import IOnlinePayment, IPayer
26
27class ApplicantOnlinePaymentFactoryTest(unittest.TestCase):
28
29    def setUp(self):
30        self.factory = ApplicantOnlinePaymentFactory()
31        return
32
33    def test_factory(self):
34        obj = self.factory()
35        assert isinstance(obj, ApplicantOnlinePayment)
36
37    def test_getInterfaces(self):
38        implemented_by = self.factory.getInterfaces()
39        assert implemented_by.isOrExtends(IOnlinePayment)
40
41    def test_payer_interface(self):
42        verify.verifyClass(IPayer, Payer)
Note: See TracBrowser for help on using the repository browser.