Loading tests/functional/api/test_repository.py +3 −0 Original line number Diff line number Diff line Loading @@ -46,6 +46,9 @@ def test_repository_files(project): blame = project.files.blame(file_path="README.rst", ref="main") assert blame raw_file = project.files.raw(file_path="README.rst", ref="main") assert os.fsdecode(raw_file) == "Initial content" raw_file = project.files.raw(file_path="README.rst") assert os.fsdecode(raw_file) == "Initial content" Loading Loading
tests/functional/api/test_repository.py +3 −0 Original line number Diff line number Diff line Loading @@ -46,6 +46,9 @@ def test_repository_files(project): blame = project.files.blame(file_path="README.rst", ref="main") assert blame raw_file = project.files.raw(file_path="README.rst", ref="main") assert os.fsdecode(raw_file) == "Initial content" raw_file = project.files.raw(file_path="README.rst") assert os.fsdecode(raw_file) == "Initial content" Loading