Skip to content

Commit

Permalink
[IMP] base_edi: add test
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiMForgeFlow committed Oct 24, 2024
1 parent 79ab59e commit 4defa4f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions base_edi/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import test_base_edi
13 changes: 13 additions & 0 deletions base_edi/tests/test_base_edi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2024 ForgeFlow
# @author: Jordi Masvidal <jordi.masvidal@forgeflow.com>
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from odoo.tests import common


class TestBaseEDI(common.TransactionCase):
"""Simple test for the CI"""

def test_category_created(self):
"""Test new EDI module category is created"""
self.assertTrue(self.env.ref("base_edi.module_category_edi").exists())

0 comments on commit 4defa4f

Please sign in to comment.