##// END OF EJS Templates
meta-tags: cleanup support for metatags....
meta-tags: cleanup support for metatags. - fixes problem of html-escape + supported link - no longer extract url from description, you have to use new url => tag - tags are extracted to the beginning of the description during rendering - show helpers in proper places in groups/repos/forks

File last commit:

r1:854a839a default
r2091:90bf6103 default
Show More
naming-conventions.rst
29 lines | 689 B | text/x-rst | RstLexer
project: added all source files and assets
r1
====================
Naming conventions
====================
Fixtures
========
We found so far a few patterns emerging in our py.test fixtures. The naming
conventions for those are documented on this page.
Utilities - ``_util``
---------------------
Used for fixtures which are used to ensure that the pre-conditions of the test
are met. Usually it does not matter so much for the test how they achieve
this. Most utilities will clean up automatically after themselves.
Use the suffix ``_util``.
Page objects - ``{route_name}_page``
------------------------------------
Used as abstractions of pages.
Use the suffix ``_page`` and if possible use the route name as the prefix.