mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-21 21:22:05 +00:00
14 lines
409 B
Python
14 lines
409 B
Python
# © 2017 Creu Blanca
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra.exceptions import ValidationError
|
|
from flectra.tests.common import TransactionCase
|
|
|
|
|
|
class TestBank(TransactionCase):
|
|
def test_bank(self):
|
|
bank = self.env["res.bank"].search([], limit=1)
|
|
self.assertTrue(bank)
|
|
with self.assertRaises(ValidationError):
|
|
bank.bic = "TEST"
|