Ejemplo n.º 1
0
 def test_from_response_should_map_datetime(self):
     mail = Mail.from_response({'mail_timestamp': '1392459985'})
     expect(mail.datetime).to.equal(datetime(2014, 2, 15, 10, 26, 25, tzinfo=utc))
Ejemplo n.º 2
0
 def test_from_response_should_map_read_as_bool_true(self):
     mail = Mail.from_response({'mail_read': '1'})
     expect(mail.read).to.be.true
Ejemplo n.º 3
0
 def test_from_response_should_default_read_to_false(self):
     mail = Mail.from_response({})
     expect(mail.read).to.be.false
Ejemplo n.º 4
0
 def test_from_response_should_map_excerpt(self):
     mail = Mail.from_response({'mail_excerpt': 'A brief message....'})
     expect(mail.excerpt).to.equal('A brief message....')
Ejemplo n.º 5
0
 def test_from_response_should_default_guid_to_none(self):
     mail = Mail.from_response({})
     expect(mail.guid).to.be.none
Ejemplo n.º 6
0
 def test_from_response_should_default_exerpt_to_none(self):
     mail = Mail.from_response({})
     expect(mail.exerpt).to.be.none
Ejemplo n.º 7
0
 def test_from_response_should_default_body_to_none(self):
     mail = Mail.from_response({})
     expect(mail.body).to.be.none
Ejemplo n.º 8
0
 def test_time_should_be_derived_from_datetime(self):
     mail = Mail(datetime=datetime(2014, 2, 16, 19, 34))
     expect(mail.time).to.equal(time(19, 34))
Ejemplo n.º 9
0
 def test_from_response_should_map_subject(self):
     mail = Mail.from_response({'mail_subject': 'Hello'})
     expect(mail.subject).to.equal('Hello')
Ejemplo n.º 10
0
 def test_from_response_should_default_body_to_none(self):
     mail = Mail.from_response({})
     expect(mail.body).to.be.none
Ejemplo n.º 11
0
 def test_from_response_should_ignore_unknown_properties(self):
     mail = Mail.from_response({
         "mail_recipient": "john",
     })
     expect(mail).to.not_have.property('recipient')
Ejemplo n.º 12
0
 def test_from_response_should_map_body(self):
     mail = Mail.from_response(
         {'mail_body': 'A brief message from our sponsors'})
     expect(mail.body).to.equal('A brief message from our sponsors')
Ejemplo n.º 13
0
 def test_from_response_should_not_map_typo_exerpt_property(self):
     mail = Mail.from_response({'mail_exerpt': 'A brief message....'})
     mail = Mail.from_response({'mail_excerpt': 'A brief message....'})
     expect(mail.exerpt).to.be.none
Ejemplo n.º 14
0
 def test_from_response_should_default_excerpt_to_none(self):
     mail = Mail.from_response({})
     expect(mail.excerpt).to.be.none
Ejemplo n.º 15
0
 def test_from_response_should_default_datetime_to_none(self):
     mail = Mail.from_response({})
     expect(mail.datetime).to.be.none
Ejemplo n.º 16
0
 def test_from_response_should_map_sender(self):
     mail = Mail.from_response({'mail_from': '*****@*****.**'})
     expect(mail.sender).to.equal('*****@*****.**')
Ejemplo n.º 17
0
 def test_from_response_should_map_exeprt(self):
     mail = Mail.from_response({'mail_exerpt': 'A brief message....'})
     expect(mail.exerpt).to.equal('A brief message....')
Ejemplo n.º 18
0
 def test_from_response_should_default_sender_to_none(self):
     mail = Mail.from_response({})
     expect(mail.sender).to.be.none
Ejemplo n.º 19
0
 def test_from_response_should_map_body(self):
     mail = Mail.from_response({'mail_body': 'A brief message from our sponsors'})
     expect(mail.body).to.equal('A brief message from our sponsors')
Ejemplo n.º 20
0
 def test_from_response_should_map_guid(self):
     mail = Mail.from_response({'mail_id': '12345'})
     expect(mail.guid).to.equal('12345')
Ejemplo n.º 21
0
 def test_from_response_should_ignore_unknown_properties(self):
     mail = Mail.from_response({
         "mail_recipient": "john",
     })
     expect(mail).to.not_have.property('recipient')
Ejemplo n.º 22
0
 def test_from_response_should_not_map_typo_exerpt_property(self):
     mail = Mail.from_response({'mail_exerpt': 'A brief message....'})
     mail = Mail.from_response({'mail_excerpt': 'A brief message....'})
     expect(mail.exerpt).to.be.none