Skip to content

Commit

Permalink
Add source encoding comments to all .py tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tilgovi committed Apr 17, 2014
1 parent 2ecdcdb commit 4a75fd8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/functional/__init__.py
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
Support for doing Selenium functional tests locally and remotely using
SauceLabs. You should be able to write tests with Selenium IDE, export
Expand Down
1 change: 1 addition & 0 deletions tests/functional/test_annotate.py
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import unittest

from selenium.webdriver.common.by import By
Expand Down
1 change: 1 addition & 0 deletions tests/functional/test_login.py
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import unittest

from selenium.webdriver.common.by import By
Expand Down
1 change: 1 addition & 0 deletions tests/unit/__init__.py
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
AppTestCase is a subclass of unittest.TestCase for writing unit tests
that will have access to a clean h database.
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_load.py
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
This is an example of a very simple test that doesn't need access
to a h database.
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_user.py
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
from unittest import TestCase
from h.models import User

Expand Down

0 comments on commit 4a75fd8

Please sign in to comment.