Skip to content

Commit

Permalink
Added base classes for request, response tests. Tests to be filled in…
Browse files Browse the repository at this point in the history
… later.
  • Loading branch information
jimjshields committed Feb 24, 2015
1 parent fd75b5e commit 35607f8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_request_handler(self):
"""Tests that the request handler receives a request and returns an
appropriate response."""

# Test to go here when best approach is decided.
# Tests to go here when best approach is decided for testing connecting to the app and making requests.

def test_set_template_path(self):
"""Tests that registering the template path to the app saves it to the app."""
Expand All @@ -56,7 +56,12 @@ def test_render(self):
class TestTinyRequest(unittest.TestCase):
"""Base class for testing TinyRequest."""


# Tests to go here when best approach is decided for testing connecting to the app and making requests.

class TestTinyResponse(unittest.TestCase):
"""Base class for testing TinyResponse."""

# Tests to go here when best approach is decided for testing connecting to the app and making requests.

if __name__ == "__main__":
unittest.main()

0 comments on commit 35607f8

Please sign in to comment.