コード例 #1
0
    def test_find_empty_alt(self):
        with patch('pelican.readers.logger') as log_mock:
            content = ['<img alt="" src="test-image.png" width="300px" />',
                       '<img src="test-image.png"  width="300px" alt="" />']

            for tag in content:
                readers.find_empty_alt(tag, '/test/path')
                log_mock.warning.assert_called_with(
                    u'Empty alt attribute for image %s in %s',
                    u'test-image.png',
                    u'/test/path',
                    extra={'limit_msg':
                           'Other images have empty alt attributes'}
                )
コード例 #2
0
ファイル: test_readers.py プロジェクト: Starch/pelican
    def test_find_empty_alt(self):
        with patch('pelican.readers.logger') as log_mock:
            content = ['<img alt="" src="test-image.png" width="300px" />',
                       '<img src="test-image.png"  width="300px" alt="" />']

            for tag in content:
                readers.find_empty_alt(tag, '/test/path')
                log_mock.warning.assert_called_with(
                    u'Empty alt attribute for image %s in %s',
                    u'test-image.png',
                    u'/test/path',
                    extra={'limit_msg':
                           'Other images have empty alt attributes'}
                )