Metadata-Version: 1.0
Name: soup_helpers
Version: 0.0.1
Summary: A set simple of BeautifulSoup4 unit test helpers
Home-page: https://bitbucket.org/bigmassa/soup_helpers
Author: Stuart George
Author-email: stuart.bigmassa@gmail.com
License: MIT
Description: Soup Helpers
        --------
        
        Examples
        
            >>> assertFormFieldExists(content, 'input', 'my_field')
            >>> assertFormFieldExists(content, 'select', 'my_field')
            >>> assertFormFieldExists(content, 'textarea', 'my_field')
        
            >>> assertInputValueEquals(content, 'my_field', 'my value')
            >>> assertInputValueEquals(content, 'my_field', None)
        
            >>> assertSelectHasOptions(content, 'my_field', ('One', 'Two'))
        
            >>> assertSelectHasSelectedOption(content, 'my_field', 'my selected text')
        
            >>> assertTagWithTextExists(content, 'p', 'some text')
        
            >>> assertTextAreaContainsText(content, 'my_field', 'some textarea text')
Platform: UNKNOWN
