mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 10:49:09 +00:00
13 lines
311 B
Python
13 lines
311 B
Python
import frappe
|
|
import unittest
|
|
from erpnext.regional.germany.accounts_controller import validate_regional
|
|
|
|
|
|
class TestAccountsController(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.sales_invoice = frappe.get_last_doc('Sales Invoice')
|
|
|
|
def test_validate_regional(self):
|
|
validate_regional(self.sales_invoice)
|