mock.sentinel.statement

Here are the examples of the python api mock.sentinel.statement taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: importanize Source File: test_formatters.py
    def test_init(self):
        actual = Formatter(mock.sentinel.statement)
        self.assertEqual(actual.statement, mock.sentinel.statement)