コード例 #1
0
ファイル: test_rich_text.py プロジェクト: 0b3r/wagtail
 def test_expand_db_attributes_not_for_editor(self):
     result = DocumentLinkHandler.expand_db_attributes(
         {'id': 1},
         False
     )
     self.assertEqual(result,
                      '<a href="/documents/1/">')
コード例 #2
0
ファイル: test_rich_text.py プロジェクト: 0b3r/wagtail
 def test_expand_db_attributes_for_editor(self):
     result = DocumentLinkHandler.expand_db_attributes(
         {'id': 1},
         True
     )
     self.assertEqual(result,
                      '<a data-linktype="document" data-id="1" href="/documents/1/">')
コード例 #3
0
ファイル: test_rich_text.py プロジェクト: zalphi/wagtail
 def test_expand_db_attributes_not_for_editor(self):
     result = DocumentLinkHandler.expand_db_attributes({'id': 1}, False)
     self.assertEqual(result, '<a href="/documents/1/">')
コード例 #4
0
ファイル: test_rich_text.py プロジェクト: zalphi/wagtail
 def test_expand_db_attributes_for_editor(self):
     result = DocumentLinkHandler.expand_db_attributes({'id': 1}, True)
     self.assertEqual(
         result,
         '<a data-linktype="document" data-id="1" href="/documents/1/">')
コード例 #5
0
ファイル: test_rich_text.py プロジェクト: zalphi/wagtail
 def test_expand_db_attributes_document_does_not_exist(self):
     result = DocumentLinkHandler.expand_db_attributes({'id': 0}, False)
     self.assertEqual(result, '<a>')
コード例 #6
0
ファイル: test_rich_text.py プロジェクト: 0b3r/wagtail
 def test_expand_db_attributes_document_does_not_exist(self):
     result = DocumentLinkHandler.expand_db_attributes(
         {'id': 0},
         False
     )
     self.assertEqual(result, '<a>')