mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
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)
|
|
|
|
|