On Thu, 29 Dec 2016 10:36 am, Diego Vela wrote:
> Re: mock bug.
>
> Python 2.7.8
>
>
> I'll provide a sketch of the code since it is from work and I'm not
> allowed to share it directly.
We don't want to see your entire code base. We want to see the smallest,
simplest example that demonstrates
Re: mock bug.
Python 2.7.8
I'll provide a sketch of the code since it is from work and I'm not allowed
to share it directly.
Sketch of Code:
@patch('emails.emails.render_to_string')
def test_send_email(self, render):
context = {
'key': value
}
emails.send_email() # calls r