File: test_utils.py

package info (click to toggle)
pydantic-settings 2.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,172 kB
  • sloc: python: 9,463; makefile: 33
file content (6 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
from pydantic_settings.utils import path_type_label


def test_path_type_label(tmp_path):
    result = path_type_label(tmp_path)
    assert result == 'directory'