Exemplo 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']
Exemplo 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']
Exemplo n.º 3
0
 def render(self, **kwargs):
     return PyQuery(install_button(self.context, self.addon, **kwargs))
Exemplo 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']
Exemplo n.º 5
0
 def render(self, **kwargs):
     return PyQuery(install_button(self.context, self.addon, **kwargs))
Exemplo 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']