Skip to content

Commit

Permalink
Add another test
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Wagner committed Oct 17, 2016
1 parent 33e2975 commit 870a5f4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@
from moviepy.editor import *

#@pytest.fixture
def test_if_TextClip_crashes():
def test_if_TextClip_crashes_in_caption_mode():
overlay = TextClip(txt='foo',
color='white',
size=(640, 480),
method='caption',
align='center',
fontsize=25)

def test_if_TextClip_crashes_in_label_mode():
overlay = TextClip(txt='foo', method='label')

0 comments on commit 870a5f4

Please sign in to comment.