Skip to content

Commit

Permalink
Add tests for failing sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
dmlls committed Oct 25, 2023
1 parent 754a71c commit 2e14f81
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@
("I really liked the food.", "I really didn't like the food.", True),
("I really liked the food.", "I really did not like the food.", False),
("A small Python module negating sentences.", "A small Python module not negating sentences.", False),
("A small Python module negating sentences.", "A small Python module not negating sentences.", True)
("A small Python module negating sentences.", "A small Python module not negating sentences.", True),
("A small Python module to negate sentences.", "A small Python module to not negate sentences.", False),
("A small Python module to negate sentences.", "A small Python module to not negate sentences.", True)
]

# General verbs - Negative
Expand All @@ -247,7 +249,9 @@
("She does not think it's true.", "She thinks it's true.", True),
("She does not think it's true.", "She thinks it's true.", False),
("A small Python module not negating sentences.", "A small Python module negating sentences.", False),
("A small Python module not negating sentences.", "A small Python module negating sentences.", True)
("A small Python module not negating sentences.", "A small Python module negating sentences.", True),
("A small Python module to not negate sentences.", "A small Python module to negate sentences.", False),
("A small Python module to not negate sentences.", "A small Python module to negate sentences.", True)
]

# Inversions - Affirmative
Expand Down

0 comments on commit 2e14f81

Please sign in to comment.