You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
def test_log(): |
|
from genmsg.base import log |
|
log("hello", "there") |
|
|
|
def test_plog(): |
|
class Foo(object): |
|
pass |
|
from genmsg.base import plog |
|
plog("hello", Foo()) |
|
|
|
def test_exceptions(): |
|
from genmsg import InvalidMsgSpec |
|
try: |
|
raise InvalidMsgSpec('hello') |
|
except InvalidMsgSpec: |
|
pass
|
|
|