This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *** Settings *** | |
| Resource plone/act/keyword.txt | |
| *** Test cases *** | |
| Anonymous shouldn't see toolbar | |
| Log out | |
| Page Should Not Contain Element id=plone-toolbar | |
| Logged in should see toolbar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # http://tech.yipit.com/2011/11/16/183772396/ | |
| import os | |
| import re | |
| import subprocess | |
| import sys | |
| modified = re.compile('^(?:M|A)(\s+)(?P<name>.*)') |
NewerOlder