def test_not_exists(self):
     mock_context = mock.Mock()
     policy = Policy(mock_context, Config2)
     self.assertFalse(policy.exists())
Exemple #2
0
 def test_not_exists(self):
     mock_context = mock.Mock()
     policy = Policy(mock_context, Config2)
     self.assertFalse(policy.exists())
 def test_exists(self):
     mock_context = mock.Mock()
     policy = Policy(mock_context, Config1)
     self.assertTrue(policy.exists())
Exemple #4
0
 def test_exists(self):
     mock_context = mock.Mock()
     policy = Policy(mock_context, Config1)
     self.assertTrue(policy.exists())