tests/test-releasenotes-formatting.t
changeset 34347 741a511492d3
parent 33958 2a37459aedf2
child 34405 159a6f7e09a9
equal deleted inserted replaced
34346:ec769bba34d3 34347:741a511492d3
   418   feature: New Features
   418   feature: New Features
   419   bc: Backwards Compatibility Changes
   419   bc: Backwards Compatibility Changes
   420   fix: Bug Fixes
   420   fix: Bug Fixes
   421   perf: Performance Improvements
   421   perf: Performance Improvements
   422   api: API Changes
   422   api: API Changes
       
   423 
       
   424   $ cd ..
       
   425 
       
   426 Raise error on simultaneous usage of flags
       
   427 
       
   428   $ hg init relnotes-raise-error
       
   429   $ cd relnotes-raise-error
       
   430   $ hg releasenotes -r . -l
       
   431   abort: cannot use both '--list' and '--rev'
       
   432   [255]
       
   433 
       
   434   $ hg releasenotes -l -c
       
   435   abort: cannot use both '--list' and '--check'
       
   436   [255]