Skip to content

Commit afcf74f

Browse files
committed
Remove deprecated test case aliases and add editorconfig
This also fixes a few minor spelling and spacing errors and ignores Pipenv files
1 parent ce92f37 commit afcf74f

File tree

5 files changed

+32
-12
lines changed

5 files changed

+32
-12
lines changed

.editorconfig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.{py,rst,ini}]
12+
indent_style = space
13+
indent_size = 4
14+
15+
[*.{html,json,yml}]
16+
indent_style = space
17+
indent_size = 2
18+
19+
[*.md]
20+
trim_trailing_whitespace = false

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ build
1010
.coverage
1111
dist
1212
.idea
13+
Pipfile
14+
Pipfile.lock
1315

1416
# docs
1517
docs/_*

nameparser/config/capitalization.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
from __future__ import unicode_literals
33

44
CAPITALIZATION_EXCEPTIONS = (
5-
('ii' ,'II'),
6-
('iii','III'),
7-
('iv' ,'IV'),
8-
('md' ,'M.D.'),
9-
('phd','Ph.D.'),
5+
('ii', 'II'),
6+
('iii', 'III'),
7+
('iv', 'IV'),
8+
('md', 'M.D.'),
9+
('phd', 'Ph.D.'),
1010
)
1111
"""
1212
Any pieces that are not capitalized by capitalizing the first letter.

nameparser/config/prefixes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#: Name pieces that appear before a last name. Prefixes join to the piece
55
#: that follows them to make one new piece. They can be chained together, e.g
66
#: "von der" and "de la". Because they only appear in middle or last names,
7-
#: they also signifiy that all following name pieces should be in the same name
7+
#: they also signify that all following name pieces should be in the same name
88
#: part, for example, "von" will be joined to all following pieces that are not
99
#: prefixes or suffixes, allowing recognition of double last names when they
1010
#: appear after a prefixes. So in "pennie von bergen wessels MD", "von" will

tests.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
class HumanNameTestBase(unittest.TestCase):
4242
def m(self, actual, expected, hn):
43-
"""assertEquals with a better message and awareness of hn.C.empty_attribute_default"""
43+
"""assertEqual with a better message and awareness of hn.C.empty_attribute_default"""
4444
expected = expected or hn.C.empty_attribute_default
4545
try:
4646
self.assertEqual(actual, expected, "'%s' != '%s' for '%s'\n%r" % (
@@ -50,7 +50,7 @@ def m(self, actual, expected, hn):
5050
hn
5151
))
5252
except UnicodeDecodeError:
53-
self.assertEquals(actual, expected)
53+
self.assertEqual(actual, expected)
5454

5555

5656
class HumanNamePythonTests(HumanNameTestBase):
@@ -62,8 +62,6 @@ def test_utf8(self):
6262

6363
def test_string_output(self):
6464
hn = HumanName("de la Véña, Jüan")
65-
print(hn)
66-
print(repr(hn))
6765

6866
def test_escaped_utf8_bytes(self):
6967
hn = HumanName(b'B\xc3\xb6ck, Gerald')
@@ -1267,7 +1265,7 @@ class ConstantsCustomization(HumanNameTestBase):
12671265
def test_add_title(self):
12681266
hn = HumanName("Te Awanui-a-Rangi Black", constants=None)
12691267
start_len = len(hn.C.titles)
1270-
self.assert_(start_len > 0)
1268+
self.assertTrue(start_len > 0)
12711269
hn.C.titles.add('te')
12721270
self.assertEqual(start_len + 1, len(hn.C.titles))
12731271
hn.parse_full_name()
@@ -1278,7 +1276,7 @@ def test_add_title(self):
12781276
def test_remove_title(self):
12791277
hn = HumanName("Hon Solo", constants=None)
12801278
start_len = len(hn.C.titles)
1281-
self.assert_(start_len > 0)
1279+
self.assertTrue(start_len > 0)
12821280
hn.C.titles.remove('hon')
12831281
self.assertEqual(start_len - 1, len(hn.C.titles))
12841282
hn.parse_full_name()

0 commit comments

Comments
 (0)