#!/usr/bin/env python3 # -*- coding: utf-8 -*- # from . import constants import pytest # @pytest.mark.skip() # def test_basic(): # import pEp # me = pEp.Identity("alice.smith@peptest.ch", "Alice Smith", "23") # me.username # 'Alice Smith' # print(me) # Alice Smith # you = pEp.Identity("bob.bourne@peptest.ch", "Bob Bourne", "42") # print(you) # Bob Bourne # m = pEp.outgoing_message(me) # m.to = [you] # m.shortmsg = "let's meet next week" # m.longmsg = "Please call me back" # m2 = m.encrypt() # print(m2) # m3, keys, rating, flags = m2.decrypt() # assert(rating == pEp.rating.reliable)