Skip to content

Commit

Permalink
Add some data to test_build_unit.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
devdanzin committed Aug 27, 2023
1 parent 9a7a76a commit 54cfc9c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions test/unit/test_build_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,23 @@ def revisions(self, path, max_revisions):
author_email="-", # as above
date=12_345_679,
message="None",
tracked_files=[],
tracked_dirs=[],
tracked_files=["a", "b", "c"],
tracked_dirs=["d"],
added_files=[],
modified_files=[],
deleted_files=[],
),
Revision(
key="67890",
author_name="Local User", # Don't want to leak local data
author_email="-", # as above
date=12_345_679,
message="None again",
tracked_files=["a", "b", "c", "d"],
tracked_dirs=["d"],
added_files=["e"],
modified_files=["f"],
deleted_files=["a"],
)
]

Expand Down

0 comments on commit 54cfc9c

Please sign in to comment.