コード例 #1
0
    def setUp(self):

        self.utils_patcher = patch('conjureup.controllers.summary.tui.utils')
        self.mock_utils = self.utils_patcher.start()

        self.app_patcher = patch('conjureup.controllers.summary.tui.app')
        mock_app = self.app_patcher.start()
        mock_app.ui = MagicMock(name="app.ui")
        self.controller = SummaryController()
        self.controller.save_path = sentinel.savepath
コード例 #2
0
    def setUp(self):

        self.utils_patcher = patch(
            'conjureup.controllers.summary.tui.utils')
        self.mock_utils = self.utils_patcher.start()

        self.app_patcher = patch(
            'conjureup.controllers.summary.tui.app')
        mock_app = self.app_patcher.start()
        mock_app.ui = MagicMock(name="app.ui")
        self.controller = SummaryController()
        self.controller.save_path = sentinel.savepath
コード例 #3
0
class SummaryTUIRenderTestCase(unittest.TestCase):
    def setUp(self):

        self.utils_patcher = patch('conjureup.controllers.summary.tui.utils')
        self.mock_utils = self.utils_patcher.start()

        self.app_patcher = patch('conjureup.controllers.summary.tui.app')
        mock_app = self.app_patcher.start()
        mock_app.ui = MagicMock(name="app.ui")
        self.controller = SummaryController()
        self.controller.save_path = sentinel.savepath

    def tearDown(self):
        self.utils_patcher.stop()
        self.app_patcher.stop()

    def test_render_empty(self):
        "call render with empty results"
        with patch("conjureup.controllers.summary.tui.common") as m_c:
            self.controller.render({})
            m_c.write_results.assert_called_once_with({}, sentinel.savepath)
コード例 #4
0
class SummaryTUIRenderTestCase(unittest.TestCase):
    def setUp(self):

        self.utils_patcher = patch(
            'conjureup.controllers.summary.tui.utils')
        self.mock_utils = self.utils_patcher.start()

        self.app_patcher = patch(
            'conjureup.controllers.summary.tui.app')
        mock_app = self.app_patcher.start()
        mock_app.ui = MagicMock(name="app.ui")
        self.controller = SummaryController()
        self.controller.save_path = sentinel.savepath

    def tearDown(self):
        self.utils_patcher.stop()
        self.app_patcher.stop()

    def test_render_empty(self):
        "call render with empty results"
        with patch("conjureup.controllers.summary.tui.common") as m_c:
            self.controller.render({})
            m_c.write_results.assert_called_once_with({}, sentinel.savepath)