def test_to_passes(self):
     self.foo = 4
     with expect.to(change, lambda: self.foo):
         self.foo = 6
 def test_to_fails(self):
     self.foo = 4
     with self.assertRaises(ExpectationError):
         with expect.to(change, lambda: self.foo):
             pass