function it_should_register_a_domain(Customer $customer, Response $response)
 {
     $response->offsetGet('status')->willReturn('Success');
     $this->client->post('/domains/register.json', Argument::type('array'))->willReturn($response);
     $this->register("tralala", "email", $customer)->shouldReturn(true);
 }