Esempio n. 1
0
 def get_button(self, t_mock, **kwargs):
     """Proxy for calling install_button."""
     template_mock = Mock()
     t_mock.return_value = template_mock
     install_button(self.context, self.addon, **kwargs)
     # Extract button from the kwargs from the first call.
     return template_mock.render.call_args[0][0]['button']
Esempio n. 2
0
 def get_button(self, t_mock, **kwargs):
     """Proxy for calling install_button."""
     template_mock = Mock()
     t_mock.return_value = template_mock
     install_button(self.context, self.addon, **kwargs)
     # Extract button from the kwargs from the first call.
     return template_mock.render.call_args[0][0]['button']
Esempio n. 3
0
 def render(self, **kwargs):
     return PyQuery(install_button(self.context, self.addon, **kwargs))
Esempio n. 4
0
 def get_button(self, render_mock, **kwargs):
     """Proxy for calling install_button."""
     install_button(self.context, self.addon, **kwargs)
     # Extract button from the kwargs from the first call.
     return render_mock.call_args[0][1]['button']
Esempio n. 5
0
 def render(self, **kwargs):
     return PyQuery(install_button(self.context, self.addon, **kwargs))
Esempio n. 6
0
 def get_button(self, render_mock, **kwargs):
     """Proxy for calling install_button."""
     install_button(self.context, self.addon, **kwargs)
     # Extract button from the kwargs from the first call.
     return render_mock.call_args[0][1]['button']