def test_get_get_command_should_return_get_email_command_instance(self): command = get_command('get') expect(command).to.be.a('guerrillamail.GetEmailCommand')
def test_set_address_command_should_return_set_address_command_instance(self): command = get_command('setaddr') expect(command).to.be.a('guerrillamail.SetAddressCommand')
def test_get_address_command_should_return_get_address_command_instance(self): command = get_command('info') expect(command).to.be.a('guerrillamail.GetInfoCommand')
def test_set_address_command_should_return_set_address_command_instance( self): command = get_command('setaddr') expect(command).to.be.a('guerrillamail.SetAddressCommand')
def test_get_address_command_should_return_get_address_command_instance( self): command = get_command('info') expect(command).to.be.a('guerrillamail.GetInfoCommand')