示例#1
0
 def test_tag_description_no_description(self):
     settings.TAG_DESCRIPTIONS = {
         "tag_name": "test_tag",
         "title": "Testing tag without description"
     }
     description = tag_description("test_tag")
     eq_("test_tag", description)
示例#2
0
 def test_tag_description_no_description(self):
     settings.TAG_DESCRIPTIONS = {"tag_name": "test_tag",
              "title": "Testing tag without description"}
     description = tag_description("test_tag")
     eq_("test_tag", description)
示例#3
0
 def test_tag_description_challenge_none(self):
     tag = 'challenge:none'
     description = tag_description(tag)
     eq_('Removed from Derby', description)
示例#4
0
 def test_tag_description_challenge_none(self):
     tag = 'challenge:none'
     description = tag_description(tag)
     eq_('Removed from Derby', description)