mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
5513be7731
* 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
19 lines
665 B
Python
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
|