Feature rye (#17)
Migrate from Poetry to Rye Adaptat github actions Group build targets in makefile
This commit is contained in:
parent
b57c4f1ae6
commit
6d53fdecac
32 changed files with 208 additions and 1203 deletions
|
|
@ -83,13 +83,20 @@ def create_comment(url, author_name, content):
|
|||
|
||||
|
||||
def test_find_recent_published_comments(setup_db):
|
||||
|
||||
comments = [create_comment("/post", "Adam", "Comment 1"), create_comment("/post", "Arf", "Comment 2"),
|
||||
create_comment("/post", "Arwin", "Comment 3"), create_comment("/post", "Bill", "Comment 4"),
|
||||
create_comment("/post", "Bo", "Comment 5"), create_comment("/post", "Charles", "Comment 6"),
|
||||
create_comment("/post", "Dan", "Comment 7"), create_comment("/post", "Dwayne", "Comment 8"),
|
||||
create_comment("/post", "Erl", "Comment 9"), create_comment("/post", "Jay", "Comment 10"),
|
||||
create_comment("/post", "Kenny", "Comment 11"), create_comment("/post", "Lord", "Comment 12")]
|
||||
comments = [
|
||||
create_comment("/post", "Adam", "Comment 1"),
|
||||
create_comment("/post", "Arf", "Comment 2"),
|
||||
create_comment("/post", "Arwin", "Comment 3"),
|
||||
create_comment("/post", "Bill", "Comment 4"),
|
||||
create_comment("/post", "Bo", "Comment 5"),
|
||||
create_comment("/post", "Charles", "Comment 6"),
|
||||
create_comment("/post", "Dan", "Comment 7"),
|
||||
create_comment("/post", "Dwayne", "Comment 8"),
|
||||
create_comment("/post", "Erl", "Comment 9"),
|
||||
create_comment("/post", "Jay", "Comment 10"),
|
||||
create_comment("/post", "Kenny", "Comment 11"),
|
||||
create_comment("/post", "Lord", "Comment 12"),
|
||||
]
|
||||
|
||||
rows = dao.find_recent_published_comments()
|
||||
assert len(rows) == 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue