Пример #1
0
 def test_delete(self):
     set_cached_content(self.mockAsset)
     del_cached_content(self.nonUnicodeLocation)
     self.assertEqual(None, get_cached_content(self.unicodeLocation),
                      'should not be stored in cache with unicodeLocation')
     self.assertEqual(None, get_cached_content(self.nonUnicodeLocation),
                      'should not be stored in cache with nonUnicodeLocation')
 def test_delete(self):
     set_cached_content(self.mockAsset)
     del_cached_content(self.nonUnicodeLocation)
     self.assertEqual(None, get_cached_content(self.unicodeLocation),
                      'should not be stored in cache with unicodeLocation')
     self.assertEqual(None, get_cached_content(self.nonUnicodeLocation),
                      'should not be stored in cache with nonUnicodeLocation')
Пример #3
0
 def test_put_and_get(self):
     set_cached_content(self.mockAsset)
     self.assertEqual(self.mockAsset.content,
                      get_cached_content(self.unicodeLocation).content,
                      'should be stored in cache with unicodeLocation')
     self.assertEqual(self.mockAsset.content,
                      get_cached_content(self.nonUnicodeLocation).content,
                      'should be stored in cache with nonUnicodeLocation')
Пример #4
0
 def test_put_and_get(self):
     set_cached_content(self.mockAsset)
     self.assertEqual(self.mockAsset.content, get_cached_content(self.unicodeLocation).content,
                      'should be stored in cache with unicodeLocation')
     self.assertEqual(self.mockAsset.content, get_cached_content(self.nonUnicodeLocation).content,
                      'should be stored in cache with nonUnicodeLocation')