Skip to content

Commit

Permalink
Merge pull request #2 from kartikm/master
Browse files Browse the repository at this point in the history
Added Gujarati test for sentence segment
  • Loading branch information
santhoshtr authored Oct 10, 2023
2 parents 2735e57 + 6bc3f8a commit d50ce77
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/unit/test_gu.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import pytest

from sentencex import segment

# ruff: noqa: E501
tests = [
(
"પણ બીજાનાં સ્વપ્નાં જોવા રહું તો મારાં સ્વપ્નાંમાંનો વખત જ ન રહે ને! અને આવાં સ્વપ્નાં તો હરકોઈ જોઈ શકે છે. દાખલા તરીકે આ સ્વપ્નું તમે જોઈ શકશો ને મને કહી શકશો, પણ મારાં સ્વપ્નાં તો મારા વિના બીજું કોઈ જોઈ શકવાનું નથી!",
[
"પણ બીજાનાં સ્વપ્નાં જોવા રહું તો મારાં સ્વપ્નાંમાંનો વખત જ ન રહે ને!",
"અને આવાં સ્વપ્નાં તો હરકોઈ જોઈ શકે છે.",
"દાખલા તરીકે આ સ્વપ્નું તમે જોઈ શકશો ને મને કહી શકશો, પણ મારાં સ્વપ્નાં તો મારા વિના બીજું કોઈ જોઈ શકવાનું નથી!",
],
)
]


@pytest.mark.parametrize("text,expected_sents", tests)
def test_segment(text, expected_sents):
assert list(segment("gu", text)) == expected_sents

0 comments on commit d50ce77

Please sign in to comment.