Changes between Version 104 and Version 105 of TestCaseManagementPlugin


Ignore:
Timestamp:
Jul 8, 2009, 7:20:02 AM (15 years ago)
Author:
anonymous
Comment:

added whitespace between ini vars, enabled syntax highlighting

Legend:

Unmodified
Added
Removed
Modified
  • TestCaseManagementPlugin

    v104 v105  
    5656 1. Add the following new section to the trac.ini file:
    5757{{{
     58#!ini
    5859[testManagementExtension]
    59 SubversionPathToTestCases=/relativePathToTestCasesInYour/Subversion/Repository
     60SubversionPathToTestCases = /relativePathToTestCasesInYour/Subversion/Repository
    6061}}}
    6162 This is important because Trac can be set up against subdirectories so you often don't link trac to your root subversion folder, so only specify the full path from the root node if that's how trac was set up.
     
    6364 1. I also add a custom ticket type in the trac.ini file for reporting purposes (although this is not required yet...just really useful)
    6465{{{
     66#!ini
    6567[ticket-custom]
    66 testcase_result=select
    67 testcase_result.label= Test Case Result
    68 testcase_result.options=pass|fail|incomplete
     68testcase_result = select
     69testcase_result.label = Test Case Result
     70testcase_result.options = pass|fail|incomplete
    6971testcase_result.value =
    7072}}}
    7173 1. Enable the plugin either through the trac admin plugin or by modifying the trac.ini file:
    7274{{{
     75#!ini
    7376[components]
    74 testManagementPlugin.*=enabled
     77testManagementPlugin.* = enabled
    7578}}}
    7679 1. Restrict ticket owners to only known users of the system.  You do this by looking for the line restrict_owner in the trac.ini file.
    7780This is actually necessary because of an oversight on my part.  I incorrectly assumed that most people would have turned this on.
    7881{{{
     82#!ini
    7983restrict_owner = true
    8084}}}
     
    101105
    102106{{{
    103 
    104107easy_install.exe http://trac-hacks.org/svn/testcasemanagementplugin/branches/testManagmentPluginGenshi
    105 
    106108}}}
    107109
     
    114116
    115117{{{
    116 
    117118easy_install.exe http://trac-hacks.org/svn/testcasemanagementplugin/branches/testManagementPlugin0.4.0
    118 
    119119}}}
    120120
     
    138138
    139139{{{
     140#!xml
    140141<testcase>
    141 
    142142  <id>
    143143    map01_zoom
    144144  </id>
    145 
    146145  <component>
    147146    map
    148147  </component>
    149 
    150148  <summary>
    151149    This test verifies correct functionaliy of zoom on the map. 
    152150  </summary>
    153 
    154151  <description>
    155152    Steps:
     
    159156    2.  etc.  Note you can use TRAC formatting in the testcase if you want. 
    160157  </description>
    161 
    162158  <expectedresult>
    163159    The map should correctly zoom to the area specified by the user..etc.
    164160  </expectedresult>
    165 
    166161</testcase>
    167 
    168162}}}
    169163
     
    172166
    173167{{{
     168#!xml
    174169<templates>
    175170 <template name="smoke">