We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ref
1 parent 9cb3396 commit f316b46Copy full SHA for f316b46
tests/functional/api/test_repository.py
@@ -46,6 +46,9 @@ def test_repository_files(project):
46
blame = project.files.blame(file_path="README.rst", ref="main")
47
assert blame
48
49
+ raw_file = project.files.raw(file_path="README.rst", ref="main")
50
+ assert os.fsdecode(raw_file) == "Initial content"
51
+
52
raw_file = project.files.raw(file_path="README.rst")
53
assert os.fsdecode(raw_file) == "Initial content"
54
0 commit comments