Skip to content

Commit 95abb4f

Browse files
committed
merge
1 parent 79dc388 commit 95abb4f

2 files changed

Lines changed: 27 additions & 21 deletions

File tree

manual_testing/mastodon_manual_test.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,27 @@ def postWithin500CharsLimitWithoutAdoptionLink():
6666
)
6767
return pet
6868

69+
def postUnicode():
70+
pet = AdoptablePet("Vinny",
71+
"Unknown",
72+
"Unknown",
73+
"Quahog",
74+
"🐶❤️ 可爱的小狗 Friendly \"lap cat\" @ shelter #AdoptMe",
75+
None,
76+
"https://static.wikia.nocookie.net/familyguyfanon/images/e/ec/Vinny_Griffin.png/revision/latest?cb=20161129110103",
77+
None,
78+
"Male",
79+
None,
80+
None
81+
)
82+
return pet
83+
6984
testingCases = [
7085
postExceed500CharsLimitWithAdoptionLink,
7186
postExceed500CharsLimitWithoutAdoptionLink,
7287
postWithin500CharsLimitWithAdoptionLink,
73-
postWithin500CharsLimitWithoutAdoptionLink
88+
postWithin500CharsLimitWithoutAdoptionLink,
89+
postUnicode
7490
]
7591

7692
def main():

requirements.txt

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,17 @@ outcome==1.3.0.post0
2626
plyer==2.1.0
2727
protobuf==3.20.3
2828
PySocks==1.7.1
29+
certifi==2026.4.22
30+
charset-normalizer==3.4.7
31+
decorator==5.2.1
32+
idna==3.13
33+
iniconfig==2.3.0
34+
Mastodon.py==2.2.1
35+
packaging==26.2
36+
pluggy==1.6.0
37+
Pygments==2.20.0
2938
pytest==9.0.3
3039
python-dateutil==2.9.0.post0
31-
python-magic==0.4.27
32-
python-telegram-bot==22.6
33-
PyVirtualDisplay==3.0
34-
PyYAML==6.0.3
35-
regex==2026.2.28
36-
requests==2.32.5
37-
selenium==4.41.0
38-
semantic-version==2.10.0
39-
setuptools==82.0.0
40-
setuptools-rust==1.12.0
40+
requests==2.33.1
4141
six==1.17.0
42-
sniffio==1.3.1
43-
sortedcontainers==2.4.0
44-
soupsieve==2.8.3
45-
tqdm==4.67.3
46-
trio==0.33.0
47-
trio-websocket==0.12.2
48-
typing_extensions==4.15.0
4942
urllib3==2.6.3
50-
webdriverdownloader==1.1.0.4
51-
websocket-client==1.9.0
52-
wsproto==1.3.2

0 commit comments

Comments
 (0)