Improvements
* Added `happyly.DUMMY_HANDLER` which returns back given message
([identity function](https://en.wikipedia.org/wiki/Identity_function))
* Dummy handler is default handler of all Executors
So you can simply provide message attributes to `run()`:
GoogleSimpleSender(
output_schema=MySchema(),
to_topic='happyly_testing',
project=os.environ['PROJECT'],
).run(
{'request_id': 'spam', 'label': 'eggs'}
)