mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
15 lines
349 B
Python
15 lines
349 B
Python
|
"""
|
||
|
This file demonstrates two different styles of tests (one doctest and one
|
||
|
unittest). These will both pass when you run "manage.py test".
|
||
|
|
||
|
Replace these with more appropriate tests for your application.
|
||
|
"""
|
||
|
|
||
|
from django.test import TestCase
|
||
|
|
||
|
class SimpleTest(TestCase):
|
||
|
def test_basic_addition(self):
|
||
|
self.failUnlessEqual(1 + 1, 2)
|
||
|
|
||
|
|