More tests for reorder.

This commit is contained in:
Jeremy Fincher 2003-12-09 14:38:37 +00:00
parent 8fe7d7e4e8
commit 0aa5f2e5f7
1 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,10 @@ class TopicTestCase(ChannelPluginTestCase, PluginDocumentation):
self.assertRegexp('topic reorder 2 1 3', r'bar.*foo.*baz')
self.assertRegexp('topic reorder 3 -2 1', r'baz.*foo.*bar')
self.assertError('topic reorder 0 1 2')
self.assertError('topic reorder 1 2')
self.assertError('topic reorder 2 3 4')
self.assertError('topic reorder 1 2 2')
self.assertError('topic reorder 1 1 2 3')
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: