Best Python code snippet using assertpy_python
test_string.py
Source:test_string.py  
...133    def test_is_equal_ignoring_case(self):134        assert_that('FOO').is_equal_to_ignoring_case('foo')135        assert_that('foo').is_equal_to_ignoring_case('FOO')136        assert_that('fOO').is_equal_to_ignoring_case('foo')137    def test_is_equal_ignoring_case_failure(self):138        try:139            assert_that('foo').is_equal_to_ignoring_case('bar')140            fail('should have raised error')141        except AssertionError as ex:142            assert_that(str(ex)).is_equal_to('Expected <foo> to be case-insensitive equal to <bar>, but was not.')143    def test_is_equal_ignoring_case_bad_value_type_failure(self):144        try:145            assert_that(123).is_equal_to_ignoring_case(12)146            fail('should have raised error')147        except TypeError as ex:148            assert_that(str(ex)).is_equal_to('val is not a string')149    def test_is_equal_ignoring_case_bad_arg_type_failure(self):150        try:151            assert_that('fred').is_equal_to_ignoring_case(12)...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
