>>> from should_dsl import *

>>> 'hello world' |should| end_with('world')

>>> 'hello motto' |should| end_with('world')
Traceback (most recent call last):
    ...
ShouldNotSatisfied: 'hello motto' does not end with 'world'

