コード例 #1
0
 def test_remove_umlaut(self):
     assert ('' == ascit('ü'))
コード例 #2
0
 def test_float(self):
     # Default strict=True removes periods.
     result = ascit('1.0', strict=False)
     assert('1.0' == result)
コード例 #3
0
 def test_remove_space_plus(self):
     assert('' == ascit(' +', strict=True))
コード例 #4
0
 def test_retain_grave(self):
     assert('è' == ascit('è'))
コード例 #5
0
 def test_retain_oeligature(self):
     assert('œ' == ascit('œ'))
コード例 #6
0
 def test_remove_duplicates(self):
     #print ascit('foo, |||,,,  ,, |,,, bar')
     assert ('foo     bar' == ascit('foo, |||,,,  ,, |,,, bar'))
コード例 #7
0
 def test_remove_comma(self):
     assert('hello there' == ascit('hello, there'))
     assert('hello there' == ascit('hello, there',strict =True))
コード例 #8
0
 def test_remove_duplicates(self):
     #print ascit('foo,- |||,,,- - --,, |,-,, bar')
     assert ('FOO BAR' == ascit('foo,- |||,,,- - --,, |,-,, bar'))
コード例 #9
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_circumflex(self):
     assert('' == ascit('ô'))
コード例 #10
0
 def test_remove_usdq(self):
     assert ('' == ascit('¿'))
コード例 #11
0
 def test_remove_ampersand(self):
     assert ('FOOBAR' == ascit('foo@bar', strict=True))
コード例 #12
0
 def test_remove_cedilla(self):
     assert ('' == ascit('ç'))
コード例 #13
0
 def test_remove_oeligature(self):
     assert ('' == ascit('œ'))
コード例 #14
0
 def test_remove_tilde(self):
     assert ('' == ascit('ñ'))
コード例 #15
0
 def test_remove_ampersand(self):
     assert ('foobar' == ascit('foo&bar', strict=True))
コード例 #16
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_umlaut(self):
     assert('' == ascit('ü'))
コード例 #17
0
 def test_remove_space_plus(self):
     assert ('' == ascit(' +', strict=True))
コード例 #18
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_tilde(self):
     assert('' == ascit('ñ'))
コード例 #19
0
 def test_remove_parentheses(self):
     #print ascit('{foo bar}', strict=True)
     assert('' == ascit('(foo bar)', strict=True))
コード例 #20
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_oeligature(self):
     assert('' == ascit('œ'))
コード例 #21
0
 def test_retain_acute_verite(self):
     #print ascit('verité').rstrip('\r\n')
     assert('verité' == ascit('verité'))
コード例 #22
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_cedilla(self):
     assert('' == ascit('ç'))
コード例 #23
0
 def test_retain_umlaut(self):
     assert('ü' == ascit('ü'))
コード例 #24
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_usdq(self):
     assert('' == ascit('¿'))
コード例 #25
0
 def test_retain_usdq(self):
     assert('¿' == ascit('¿'))
コード例 #26
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_ampersand(self):
     assert('FOOBAR' == ascit('foo@bar', strict=True))
コード例 #27
0
 def test_remove_ampersand(self):
     assert('foobar' == ascit('foo&bar', strict=True))
コード例 #28
0
ファイル: test_ascit.py プロジェクト: doolin/patentprocessor
 def test_remove_duplicates(self):
     #print ascit('foo,- |||,,,- - --,, |,-,, bar')
     assert('FOO BAR' == ascit('foo,- |||,,,- - --,, |,-,, bar'))
コード例 #29
0
 def test_remove_duplicates(self):
     #print ascit('foo, |||,,,  ,, |,,, bar')
     assert('foo     bar' == ascit('foo, |||,,,  ,, |,,, bar'))
コード例 #30
0
 def test_remove_parentheses(self):
     #print ascit('{foo bar}', strict=True)
     assert ('' == ascit('(foo bar)', strict=True))
コード例 #31
0
 def test_remove_period(self):
     assert ('10' == ascit('1.0', strict=True))
コード例 #32
0
 def test_remove_period(self):
     assert ('hello there' == ascit('hello. there'))
     assert ('hello there' == ascit('hello. there', strict=True))
コード例 #33
0
 def test_remove_punctuation(self):
     assert ('foobar' == ascit('f+=_oo@b!#$%^&*(){}ar', strict=True))
コード例 #34
0
 def test_remove_comma(self):
     assert ('hello there' == ascit('hello, there'))
     assert ('hello there' == ascit('hello, there', strict=True))
コード例 #35
0
 def test_remove_spaces(self):
     #print ascit('foo bar')
     assert ('foobar' == ascit('foobar'))
コード例 #36
0
 def test_toupper(self):
     assert ('FOO' == ascit('FOO'))
コード例 #37
0
 def test_remove_braces(self):
     #print ascit('{foo bar}', strict=True)
     assert ('' == ascit('{foo bar}', strict=True))
コード例 #38
0
 def test_retain_acute_verite(self):
     #print ascit('verité').rstrip('\r\n')
     assert ('verité' == ascit('verité'))
コード例 #39
0
 def test_remove_period(self):
     assert('hello there' == ascit('hello. there'))
     assert('hello there' == ascit('hello. there',strict =True))
コード例 #40
0
 def test_retain_acute(self):
     #print 'ascit é' + ascit('é')
     assert ('é' == ascit('é'))
コード例 #41
0
 def test_toupper(self):
     assert('FOO' == ascit('FOO'))
コード例 #42
0
 def test_retain_grave(self):
     assert ('è' == ascit('è'))
コード例 #43
0
 def test_retain_acute(self):
     #print 'ascit é' + ascit('é')
     assert('é' == ascit('é'))
コード例 #44
0
 def test_retain_circumflex(self):
     assert ('ô' == ascit('ô'))
コード例 #45
0
 def test_retain_circumflex(self):
     assert('ô' == ascit('ô'))
コード例 #46
0
 def test_retain_umlaut(self):
     assert ('ü' == ascit('ü'))
コード例 #47
0
 def test_retain_tilde(self):
     assert('ñ' == ascit('ñ'))
コード例 #48
0
 def test_retain_tilde(self):
     assert ('ñ' == ascit('ñ'))
コード例 #49
0
 def test_retain_cedilla(self):
     assert('ç' == ascit('ç'))
コード例 #50
0
 def test_retain_oeligature(self):
     assert ('œ' == ascit('œ'))
コード例 #51
0
 def test_int(self):
     assert('1' == ascit('1'))
コード例 #52
0
 def test_retain_cedilla(self):
     assert ('ç' == ascit('ç'))
コード例 #53
0
 def test_remove_period(self):
     assert('10' == ascit('1.0', strict=True))
コード例 #54
0
 def test_retain_usdq(self):
     assert ('¿' == ascit('¿'))
コード例 #55
0
 def test_remove_punctuation(self):
     assert('foobar' == ascit('f+=_oo@b!#$%^&*(){}ar', strict=True))
コード例 #56
0
 def test_int(self):
     assert ('1' == ascit('1'))
コード例 #57
0
 def test_remove_spaces(self):
     #print ascit('foo bar')
     assert('foobar' == ascit('foobar'))
コード例 #58
0
 def test_float(self):
     # Default strict=True removes periods.
     result = ascit('1.0', strict=False)
     assert ('1.0' == result)
コード例 #59
0
 def test_remove_braces(self):
     #print ascit('{foo bar}', strict=True)
     assert('' == ascit('{foo bar}', strict=True))
コード例 #60
0
 def test_remove_circumflex(self):
     assert ('' == ascit('ô'))