Fixed #25825 -- Implemented __ne__() for template Origin

This commit is contained in:
Jaap Roes 2015-11-27 17:19:19 +01:00 committed by Tim Graham
parent 395af23ac1
commit c6ea4ed5d2
2 changed files with 27 additions and 0 deletions

View File

@ -151,6 +151,9 @@ class Origin(object):
self.loader == other.loader
)
def __ne__(self, other):
return not self.__eq__(other)
@property
def loader_name(self):
if self.loader:

View File

@ -0,0 +1,24 @@
from unittest import TestCase
from django.template import Engine
from .utils import TEMPLATE_DIR
class OriginTestCase(TestCase):
def setUp(self):
self.engine = Engine(dirs=[TEMPLATE_DIR])
def test_origin_compares_equal(self):
a = self.engine.get_template('index.html')
b = self.engine.get_template('index.html')
self.assertEqual(a.origin, b.origin)
self.assertTrue(a.origin == b.origin)
self.assertFalse(a.origin != b.origin)
def test_origin_compares_not_equal(self):
a = self.engine.get_template('first/test.html')
b = self.engine.get_template('second/test.html')
self.assertNotEqual(a.origin, b.origin)
self.assertFalse(a.origin == b.origin)
self.assertTrue(a.origin != b.origin)