예제 #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))
예제 #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
예제 #3
0
 def test_from_response_should_default_read_to_false(self):
     mail = Mail.from_response({})
     expect(mail.read).to.be.false
예제 #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....')
예제 #5
0
 def test_from_response_should_default_guid_to_none(self):
     mail = Mail.from_response({})
     expect(mail.guid).to.be.none
예제 #6
0
 def test_from_response_should_default_exerpt_to_none(self):
     mail = Mail.from_response({})
     expect(mail.exerpt).to.be.none
예제 #7
0
 def test_from_response_should_default_body_to_none(self):
     mail = Mail.from_response({})
     expect(mail.body).to.be.none
예제 #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))
예제 #9
0
 def test_from_response_should_map_subject(self):
     mail = Mail.from_response({'mail_subject': 'Hello'})
     expect(mail.subject).to.equal('Hello')
예제 #10
0
 def test_from_response_should_default_body_to_none(self):
     mail = Mail.from_response({})
     expect(mail.body).to.be.none
예제 #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')
예제 #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')
예제 #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
예제 #14
0
 def test_from_response_should_default_excerpt_to_none(self):
     mail = Mail.from_response({})
     expect(mail.excerpt).to.be.none
예제 #15
0
 def test_from_response_should_default_datetime_to_none(self):
     mail = Mail.from_response({})
     expect(mail.datetime).to.be.none
예제 #16
0
 def test_from_response_should_map_sender(self):
     mail = Mail.from_response({'mail_from': '*****@*****.**'})
     expect(mail.sender).to.equal('*****@*****.**')
예제 #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....')
예제 #18
0
 def test_from_response_should_default_sender_to_none(self):
     mail = Mail.from_response({})
     expect(mail.sender).to.be.none
예제 #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')
예제 #20
0
 def test_from_response_should_map_guid(self):
     mail = Mail.from_response({'mail_id': '12345'})
     expect(mail.guid).to.equal('12345')
예제 #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')
예제 #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