Skip to content

Commit

Permalink
Improve test names.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffmendoza committed Jun 18, 2015
1 parent 2ea3b98 commit 1dd44bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appengine/images/tests/test_guestbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


class TestHandlers(DatastoreTestbedCase):
def test_hello(self):
def test_get(self):
# Build a request object passing the URI path to be tested.
# You can also pass headers, query arguments etc.
request = webapp2.Request.blank('/')
Expand Down Expand Up @@ -52,7 +52,7 @@ def test_img(self):
self.assertEqual(response.status_int, 500)

@mock.patch('appengine.images.main.images')
def test_get(self, mock_images):
def test_post_and_get(self, mock_images):
mock_images.resize.return_value = 'asdf'
request = webapp2.Request.blank(
'/sign',
Expand Down

0 comments on commit 1dd44bd

Please sign in to comment.