##// END OF EJS Templates
fixed initial whoosh indexer. Build full index on first run even with incremental flag
fixed initial whoosh indexer. Build full index on first run even with incremental flag

File last commit:

r459:7c978511 default
r465:e01a85f9 default
Show More
test_admin_settings.py
43 lines | 1.5 KiB | text/x-python | PythonLexer
added settings rest controllers for admin, updated routes with easier submodule handling
r346 from pylons_app.tests import *
class TestSettingsController(TestController):
def test_index(self):
response = self.app.get(url('admin_settings'))
# Test response...
def test_index_as_xml(self):
response = self.app.get(url('formatted_admin_settings', format='xml'))
def test_create(self):
response = self.app.post(url('admin_settings'))
def test_new(self):
response = self.app.get(url('admin_new_setting'))
def test_new_as_xml(self):
response = self.app.get(url('formatted_admin_new_setting', format='xml'))
def test_update(self):
implemented basic (startup) nose test suite.
r459 response = self.app.put(url('admin_setting', setting_id=1))
added settings rest controllers for admin, updated routes with easier submodule handling
r346
def test_update_browser_fakeout(self):
implemented basic (startup) nose test suite.
r459 response = self.app.post(url('admin_setting', setting_id=1), params=dict(_method='put'))
added settings rest controllers for admin, updated routes with easier submodule handling
r346
def test_delete(self):
implemented basic (startup) nose test suite.
r459 response = self.app.delete(url('admin_setting', setting_id=1))
added settings rest controllers for admin, updated routes with easier submodule handling
r346
def test_delete_browser_fakeout(self):
implemented basic (startup) nose test suite.
r459 response = self.app.post(url('admin_setting', setting_id=1), params=dict(_method='delete'))
added settings rest controllers for admin, updated routes with easier submodule handling
r346
def test_show(self):
implemented basic (startup) nose test suite.
r459 response = self.app.get(url('admin_setting', setting_id=1))
added settings rest controllers for admin, updated routes with easier submodule handling
r346
def test_show_as_xml(self):
implemented basic (startup) nose test suite.
r459 response = self.app.get(url('formatted_admin_setting', setting_id=1, format='xml'))
added settings rest controllers for admin, updated routes with easier submodule handling
r346
def test_edit(self):
implemented basic (startup) nose test suite.
r459 response = self.app.get(url('admin_edit_setting', setting_id=1))
added settings rest controllers for admin, updated routes with easier submodule handling
r346
def test_edit_as_xml(self):
implemented basic (startup) nose test suite.
r459 response = self.app.get(url('formatted_admin_edit_setting', setting_id=1, format='xml'))