OWASP / Maturity-Models

Node application to help managing Maturity Models like the ones created by BSIMM and OpenSAMM
Apache License 2.0
187 stars 51 forks source link

There are two 'Raw' titles in the Routes page #144

Closed DinisCruz closed 8 years ago

DinisCruz commented 8 years ago

The 2nd should say 'fixed'

image

DinisCruz commented 8 years ago

here is how to replicate the issue

      @.$('b').length.assert_Is 2
      @.$('b').eq(0).html().assert_Is 'Raw'
      @.$('b').eq(1).html().assert_Is 'Raw'
DinisCruz commented 8 years ago

here is the stand alone test

  it 'Issues 144 - There are two Raw titles in the Routes page', ->    
    inject ($injector)->
      using $injector.get('Render_View')(url_Location : "/view/routes").run(),->      
        @.$('b').length.assert_Is 2
        @.$('b').eq(0).html().assert_Is 'Raw'
        @.$('b').eq(1).html().assert_Is 'Raw'
DinisCruz commented 8 years ago

Here is the fix workflow

image

image

image