Skip to content

Commit

Permalink
more path tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KatKatKateryna committed Jan 18, 2024
1 parent 4dcb4d7 commit 2080733
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/unit/geometry_tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ def test_path2():
assert "1" in os.path.dirname(specklepy_qt_ui.__file__)


def test_path3():
import speckle

root = os.path.abspath(
os.path.dirname(os.path.abspath(os.path.dirname(speckle.__file__)))
)
subfolders = [f.path for f in os.scandir(root) if f.is_dir()]
assert "1" in subfolders


from speckle.converter.geometry.utils import (
cross_product,
dot,
Expand Down

0 comments on commit 2080733

Please sign in to comment.