9 lines
254 B
Python
9 lines
254 B
Python
import unittest
|
|
from tests.recipes.recipe_lib_test import BaseTestForCmakeRecipe
|
|
|
|
|
|
class TestJpegRecipe(BaseTestForCmakeRecipe, unittest.TestCase):
|
|
"""
|
|
An unittest for recipe :mod:`~pythonforandroid.recipes.jpeg`
|
|
"""
|
|
recipe_name = "jpeg"
|