Example #1
0
 def test_reauth_needed(self):
     session = Session()
     session[session._reauth_timestamp_key] = 0
     assert session.needs_reauthentication(666)
Example #2
0
 def test_reauth_needed_no_value(self):
     session = Session()
     assert session.needs_reauthentication(666)
Example #3
0
 def test_reauth_unneeded(self):
     session = Session()
     session.record_auth_timestamp()
     assert not session.needs_reauthentication(666)