Skip to content

Commit

Permalink
Add test for Zulko#632
Browse files Browse the repository at this point in the history
  • Loading branch information
koutoftimer committed Feb 3, 2023
1 parent 21dfd88 commit 9e9836e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_compositing.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,5 +230,11 @@ def test_631(inputclip):
supersample(concatenate_videoclips([inputclip, inputclip]), 1, 1)


@pytest.mark.parametrize(['inputclip'], [
[ColorClip((256, 200), color=(255, 0, 0)).with_duration(5)],
])
def test_632(inputclip):
concatenate_videoclips([inputclip, inputclip]).make_frame(inputclip.duration * 2)

if __name__ == "__main__":
pytest.main()

0 comments on commit 9e9836e

Please sign in to comment.