def target_ref_fixture_(self, request, part):
     rId = 'rId246'
     url = 'https://github.com/scanny/python-pptx'
     rels = RelationshipCollection(None)
     rels.add_relationship(None, url, rId, is_external=True)
     part._rels = rels
     return part, rId, url
Beispiel #2
0
 def target_ref_fixture_(self, request, part):
     rId = 'rId246'
     url = 'https://github.com/scanny/python-pptx'
     rels = RelationshipCollection(None)
     rels.add_relationship(None, url, rId, is_external=True)
     part._rels = rels
     return part, rId, url
 def rels(self):
     """
     Populated RelationshipCollection instance that will exercise the
     rels.xml property.
     """
     rels = RelationshipCollection("/baseURI")
     rels.add_relationship(reltype="http://rt-hyperlink", target="http://some/link", rId="rId1", is_external=True)
     part = Mock(name="part")
     part.partname.relative_ref.return_value = "../media/image1.png"
     rels.add_relationship(reltype="http://rt-image", target=part, rId="rId2")
     return rels
Beispiel #4
0
 def rels(self):
     """
     Populated RelationshipCollection instance that will exercise the
     rels.xml property.
     """
     rels = RelationshipCollection('/baseURI')
     rels.add_relationship(
         reltype='http://rt-hyperlink', target='http://some/link',
         rId='rId1', is_external=True
     )
     part = Mock(name='part')
     part.partname.relative_ref.return_value = '../media/image1.png'
     rels.add_relationship(reltype='http://rt-image', target=part,
                           rId='rId2')
     return rels
 def rels(self):
     """
     Populated RelationshipCollection instance that will exercise the
     rels.xml property.
     """
     rels = RelationshipCollection('/baseURI')
     rels.add_relationship(
         reltype='http://rt-hyperlink', target='http://some/link',
         rId='rId1', is_external=True
     )
     part = Mock(name='part')
     part.partname.relative_ref.return_value = '../media/image1.png'
     rels.add_relationship(reltype='http://rt-image', target=part,
                           rId='rId2')
     return rels
 def rels(self):
     """
     Populated RelationshipCollection instance that will exercise the
     rels.xml property.
     """
     rels = RelationshipCollection("/baseURI")
     rels.add_relationship(
         reltype="http://rt-hyperlink",
         target="http://some/link",
         rId="rId1",
         is_external=True,
     )
     part = Mock(name="part")
     part.partname.relative_ref.return_value = "../media/image1.png"
     rels.add_relationship(reltype="http://rt-image", target=part, rId="rId2")
     return rels
 def it_can_add_a_relationship(self, _Relationship_):
     baseURI, rId, reltype, target, external = ("baseURI", "rId9", "reltype", "target", False)
     rels = RelationshipCollection(baseURI)
     rel = rels.add_relationship(reltype, target, rId, external)
     _Relationship_.assert_called_once_with(rId, reltype, target, baseURI, external)
     assert rels[rId] == rel
     assert rel == _Relationship_.return_value
Beispiel #8
0
 def it_can_add_a_relationship(self, _Relationship_):
     baseURI, rId, reltype, target, external = ('baseURI', 'rId9',
                                                'reltype', 'target', False)
     rels = RelationshipCollection(baseURI)
     rel = rels.add_relationship(reltype, target, rId, external)
     _Relationship_.assert_called_once_with(rId, reltype, target, baseURI,
                                            external)
     assert rels[rId] == rel
     assert rel == _Relationship_.return_value
Beispiel #9
0
 def it_can_add_a_relationship(self, _Relationship_):
     baseURI, rId, reltype, target, is_external = (
         'baseURI', 'rId9', 'reltype', 'target', False
     )
     rels = RelationshipCollection(baseURI)
     rel = rels.add_relationship(reltype, target, rId, is_external)
     _Relationship_.assert_called_once_with(
         rId, reltype, target, baseURI, is_external
     )
     assert rels[rId] == rel
     assert rel == _Relationship_.return_value
 def it_can_add_a_relationship(self, _Relationship_):
     baseURI, rId, reltype, target, is_external = (
         "baseURI",
         "rId9",
         "reltype",
         "target",
         False,
     )
     rels = RelationshipCollection(baseURI)
     rel = rels.add_relationship(reltype, target, rId, is_external)
     _Relationship_.assert_called_once_with(rId, reltype, target, baseURI,
                                            is_external)
     assert rels[rId] == rel
     assert rel == _Relationship_.return_value
Beispiel #11
0
 def add_matching_ext_rel_fixture_(self, request, reltype, url):
     rId = 'rId369'
     rels = RelationshipCollection(None)
     rels.add_relationship(reltype, url, rId, is_external=True)
     return rels, reltype, url, rId
 def add_matching_ext_rel_fixture_(self, request, reltype, url):
     rId = "rId369"
     rels = RelationshipCollection(None)
     rels.add_relationship(reltype, url, rId, is_external=True)
     return rels, reltype, url, rId