@@ -250,3 +250,36 @@ outstring='''"""
250250 :param caplog: Pytest caplog fixture.
251251 :yield: Until test complete, then run cleanup.
252252 """'''
253+
254+ [issue_271 ]
255+ instring =''' """
256+ My test fixture.
257+
258+ :ivar id: A unique identifier for the element, automatically generated upon instantiation.
259+ :vartype id: str
260+ :ivar created: Timestamp when the element was created, defaults to the current time.
261+ :vartype created: datetime
262+ :cvar modified: Timestamp when the element was last modified, can be None if not modified.
263+ :vartype modified: Optional[datetime]
264+ :cvar in_project: List of projects this element is part of. Direct modification is restricted.
265+ :vartype in_project: list[Project]
266+ :param caplog: Pytest caplog fixture.
267+ :yield: Until test complete, then run cleanup.
268+ """'''
269+ outstring =''' """
270+ My test fixture.
271+
272+ :ivar id: A unique identifier for the element, automatically generated upon
273+ instantiation.
274+ :vartype id: str
275+ :ivar created: Timestamp when the element was created, defaults to the current time.
276+ :vartype created: datetime
277+ :cvar modified: Timestamp when the element was last modified, can be None if not
278+ modified.
279+ :vartype modified: Optional[datetime]
280+ :cvar in_project: List of projects this element is part of. Direct modification is
281+ restricted.
282+ :vartype in_project: list[Project]
283+ :param caplog: Pytest caplog fixture.
284+ :yield: Until test complete, then run cleanup.
285+ """'''
0 commit comments