Files
Charly Delay cf7de3c106 testsuite: refactor for clarity and maintenance
Change-Id: I1d500175c06a0839268c8a3c4bfc31043c1bf259
2015-09-30 18:23:28 +02:00

17 lines
463 B
Python

"""Check that all files have been created."""
from unittest import TestCase
from support.mock import GNAThub, Project
class TestSimpleExample(TestCase):
def setUp(self):
self.longMessage = True
# Run GNAThub with only the sonar-config plugin
self.gnathub = GNAThub(Project.simple(), plugins=['sonar-config'])
def testDatabaseContent(self):
# Test the Python plug-in API
self.gnathub.run(script='check-api.py')