0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/ee/models/test/test_property_definition_model.py
Tom Owers 5513be7731
chore: upgraded Ruff linter (#18188)
* Upgraded Ruff linter

* Formatted whole codebase with new ruff rules

* Revert import removal

* Fixed mypi issues or added ignores

* Fixed schema formatting

* Fixed hogvm failing tests

* Remove duplicate key in list
2023-10-26 12:38:15 +02:00

19 lines
665 B
Python

import pytest
from ee.models.property_definition import EnterprisePropertyDefinition
from posthog.test.base import BaseTest
class TestPropertyDefinition(BaseTest):
def test_errors_on_invalid_verified_by_type(self):
with pytest.raises(ValueError):
EnterprisePropertyDefinition.objects.create(
team=self.team,
name="enterprise property",
verified_by="Not user id", # type: ignore
)
def test_default_verified_false(self):
definition = EnterprisePropertyDefinition.objects.create(team=self.team, name="enterprise property")
assert definition.verified is False