Child: [c2e3f8] (diff)

Download this file

test_static.py    9 lines (6 with data), 335 Bytes

1
2
3
4
5
6
7
8
from allura.tests import TestController
class TestStatic(TestController):
def test_static_controller(self):
self.app.get('/nf/_static_/hello_forge/js/comments.js')
self.app.get('/nf/_static_/hello_forge/js/no_such_file.js', status=404)
self.app.get('/nf/_static_/no_such_tool/js/comments.js', status=404)