Skip to content

Commit

Permalink
Update test class naming
Browse files Browse the repository at this point in the history
  • Loading branch information
davidaurelio committed Mar 31, 2015
1 parent eaafdb6 commit 11af4b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_hashids.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def test_small_alphabet(self):
pytest.raises(ValueError, Hashids, alphabet='abcabc')


class TestEncryption(object):
class TestEncoding(object):
def test_empty_call(self):
assert Hashids().encode() == ''

Expand Down Expand Up @@ -76,7 +76,7 @@ def test_negative_call(self):
def test_float_call(self):
assert Hashids().encode(1, 2.5, 3) == ''

class TestDecryption(object):
class TestDecoding(object):
def test_empty_string(self):
assert Hashids().decode('') == ()

Expand Down

0 comments on commit 11af4b2

Please sign in to comment.