14 lines
340 B
Python
14 lines
340 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def sample_announcement_data():
|
|
return {
|
|
"title": "测试公告标题",
|
|
"publish_date": "2026-05-09",
|
|
"purchase_name": "测试单位",
|
|
"content_url": "https://example.com/detail/123",
|
|
"source_code": "ZcyAnnouncement1",
|
|
"source_name": "采购公告",
|
|
}
|