blob: 793e61000ac8746119d5822b37d8e976c226fe5b [file] [log] [blame]
srikanth116e6e82014-08-19 07:22:37 -07001#
2# Copyright (c) 2013 Big Switch Networks, Inc.
3#
4# Licensed under the Eclipse Public License, Version 1.0 (the
5# "License"); you may not use this file except in compliance with the
6# License. You may obtain a copy of the License at
7#
8# http://www.eclipse.org/legal/epl-v10.html
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied. See the License for the specific language governing
14# permissions and limitations under the License.
15#
16
17"""
18This file demonstrates two different styles of tests (one doctest and one
19unittest). These will both pass when you run "manage.py test".
20
21Replace these with more appropriate tests for your application.
22"""
23
24from django.test import TestCase
25
26class SimpleTest(TestCase):
27 def test_basic_addition(self):
28 """
29 Tests that 1 + 1 always equals 2.
30 """
31 self.failUnlessEqual(1 + 1, 2)
32
33__test__ = {"doctest": """
34Another way to test that 1 + 1 is equal to 2.
35
36>>> 1 + 1 == 2
37True
38"""}
39