Files
Jedd Morgan d1b6755997 Removes all FE1 client functions (#380)
* Removes all FE1 client functions

* Removed usages of deprecated client functions

* removed trailing deprecated client function

* ruff

* Fixed last failing test
2025-02-18 15:32:14 +00:00

24 lines
641 B
Python

import random
import pytest
from specklepy.objects.base import Base
@pytest.fixture(scope="session")
def base() -> Base:
base = Base()
base.name = "my_base"
base.units = "millimetres"
base.null_val = None
base.null_dict = {"a null val": None}
base.tuple = (1, 2, "3")
base.set = {1, 2, "3"}
base.vertices = [random.uniform(0, 10) for _ in range(1, 120)]
base.test_bases = [Base(applicationId=str(i)) for i in range(1, 22)]
base["@detach"] = Base(applicationId="detached base")
base["@revit_thing"] = Base.of_type(
"SpecialRevitFamily", applicationId="secret tho"
)
return base