Skip to content

Commit

Permalink
test favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
emillon committed Dec 18, 2014
1 parent 20b73ba commit fbcd53f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ def test_home(self):
r = self.client.get('/')
self.assertIn('Upload and review', r.data)

def test_favicon(self):
r = self.client.get('/favicon.ico', follow_redirects=True)
self.assert200(r)

def test_upload(self):
r = self._login('a', 'a', signup=True)
r = self._upload('toto.pdf')
Expand Down

0 comments on commit fbcd53f

Please sign in to comment.