Beispiel #1
0
 def test_should_return_false_if_none(self):
     self.assertFalse(request_bool(None, None))
Beispiel #2
0
 def test_should_return_false_if_key_does_not_exist(self):
     self.assertFalse(request_bool(DATA, 'does_not_exist'))
Beispiel #3
0
 def test_should_parse_true_uppercase(self):
     self.assertTrue(request_bool(DATA, 'bool_upper'))
Beispiel #4
0
 def test_should_parse_not_true_as_false(self):
     self.assertFalse(request_bool(DATA, 'number'))
Beispiel #5
0
 def test_should_parse_true(self):
     self.assertTrue(request_bool(DATA, 'bool'))