mock.sentinel.chart

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

1 Examples 7

3 Source : test_release_diff.py
with Apache License 2.0
from airshipit

    def test_same_input(self):
        diff = ReleaseDiff(
            mock.sentinel.chart, mock.sentinel.values, mock.sentinel.chart,
            mock.sentinel.values).get_diff()
        self.assertFalse(diff)

    def test_diff_input(self):