~ubuntu-branches/ubuntu/vivid/pyjunitxml/vivid

« back to all changes in this revision

Viewing changes to junitxml/tests/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Robert Collins
  • Date: 2009-09-20 17:19:22 UTC
  • Revision ID: james.westby@ubuntu.com-20090920171922-e2vwr52quh24jxc9
Tags: upstream-0.2
ImportĀ upstreamĀ versionĀ 0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  junitxml: extensions to Python unittest to get output junitxml
 
3
#  Copyright (C) 2009 Robert Collins <robertc@robertcollins.net>
 
4
#
 
5
#  Copying permitted under the LGPL-3 licence, included with this library.
 
6
 
 
7
import unittest
 
8
 
 
9
from junitxml.tests import (
 
10
    test_junitxml,
 
11
    )
 
12
 
 
13
def test_suite():
 
14
    return unittest.TestLoader().loadTestsFromNames([
 
15
        'junitxml.tests.test_junitxml',
 
16
        ])