8 lines
202 B
Python
8 lines
202 B
Python
from scribeengine.tests import *
|
|
|
|
class TestBlogController(TestController):
|
|
|
|
def test_index(self):
|
|
response = self.app.get(url(controller='blog', action='index'))
|
|
# Test response...
|