Beispiel #1
0
 def test_boolean(self):
     self.assertEquals(types.boolean("FaLSE"), False)
Beispiel #2
0
 def test_boolean_false(self):
     self.assertEquals(types.boolean("False"), False)
Beispiel #3
0
 def test_boolean_true(self):
     self.assertEquals(types.boolean("true"), True)
Beispiel #4
0
 def test_boolean(self):
     assert_equal(types.boolean("FaLSE"), False)
Beispiel #5
0
 def test_bad_boolean(self):
     assert_raises(ValueError, lambda: types.boolean("blah"))
Beispiel #6
0
 def test_boolean_true(self):
     assert_equal(types.boolean("true"), True)
Beispiel #7
0
 def test_boolean_upper_case(self):
     assert_equal(types.boolean("FaLSE"), False)
Beispiel #8
0
 def test_boolean(self):
     self.assertEquals(types.boolean("FaLSE"), False)
Beispiel #9
0
 def test_boolean_false(self):
     assert_equal(types.boolean("False"), False)
Beispiel #10
0
 def test_boolean_false(self):
     self.assertEquals(types.boolean("False"), False)
Beispiel #11
0
 def test_boolean_true(self):
     self.assertEquals(types.boolean("true"), True)
Beispiel #12
0
 def test_bad_boolean(self):
     assert_raises(ValueError, lambda: types.boolean("blah"))
Beispiel #13
0
 def test_boolean(self):
     assert_equal(types.boolean("FaLSE"), False)
Beispiel #14
0
 def test_boolean_upper_case(self):
     assert_equal(types.boolean("FaLSE"), False)
Beispiel #15
0
 def test_boolean_true(self):
     assert_equal(types.boolean("true"), True)
Beispiel #16
0
 def test_boolean_false(self):
     assert_equal(types.boolean("False"), False)