oca-storage/odoo-bringout-oca-storage-fs_file/fs_file/tests/models.py
2025-08-29 15:43:06 +02:00

15 lines
288 B
Python

# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import models
from ..fields import FSFile
class TestModel(models.Model):
_name = "test.model"
_description = "Test Model"
_log_access = False
fs_file = FSFile()