Skip to content

Commit

Permalink
Tests passing again with latest fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
zedshaw committed Feb 26, 2013
1 parent 8eb3a3a commit 348a312
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
16 changes: 16 additions & 0 deletions doc/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
BeautifulSoup
CleverCSS
Jinja2
PyStemmer
South
chardet
docutils
lockfile
lxml
markdown2
mock
nose
pydns
python-daemon
pytyrant
spambayes
2 changes: 0 additions & 2 deletions tests/lamson_tests/server_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

from nose.tools import *
from mock import *
import os
from lamson import server, queue, routing
from message_tests import *
import re


def test_router():
Expand Down
3 changes: 3 additions & 0 deletions tests/lamson_tests/simple_fsm_mod.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ def NEXT(message, list_name=None, action=None, host=None):
print "NEXT", message, list_name, action, host
return END

def ERROR(message):
return ERROR

@route("(anything)@(host)", anything=".*")
def END(message, anything=None, host=None):
print "END", anything, host
Expand Down

0 comments on commit 348a312

Please sign in to comment.