コード例 #1
0
ファイル: tests.py プロジェクト: bdpdx/python-guerrillamail
 def test_get_get_command_should_return_get_email_command_instance(self):
     command = get_command('get')
     expect(command).to.be.a('guerrillamail.GetEmailCommand')
コード例 #2
0
ファイル: tests.py プロジェクト: bdpdx/python-guerrillamail
 def test_set_address_command_should_return_set_address_command_instance(self):
     command = get_command('setaddr')
     expect(command).to.be.a('guerrillamail.SetAddressCommand')
コード例 #3
0
ファイル: tests.py プロジェクト: bdpdx/python-guerrillamail
 def test_get_address_command_should_return_get_address_command_instance(self):
     command = get_command('info')
     expect(command).to.be.a('guerrillamail.GetInfoCommand')
コード例 #4
0
 def test_get_get_command_should_return_get_email_command_instance(self):
     command = get_command('get')
     expect(command).to.be.a('guerrillamail.GetEmailCommand')
コード例 #5
0
 def test_set_address_command_should_return_set_address_command_instance(
         self):
     command = get_command('setaddr')
     expect(command).to.be.a('guerrillamail.SetAddressCommand')
コード例 #6
0
 def test_get_address_command_should_return_get_address_command_instance(
         self):
     command = get_command('info')
     expect(command).to.be.a('guerrillamail.GetInfoCommand')