Sha256: 7db029068a61d30d7c8c0f9c6ecf84cc14232bd7dad205158c2a5bb01c2f1756

Contents?: true

Size: 874 Bytes

Versions: 7

Compression:

Stored size: 874 Bytes

Contents

%h2
  %a{"href" => '../'}
    = @feature.gherkin["name"]
%h2
  = @scenario["name"]
  - if @scenario["tags"]
    = haml :tag_links, {:locals => {:tags => @scenario["tags"]}, :layout => false}
- if @background
  %h3
    = @background["keyword"] + ":"
  - @background["steps"].each do |step|
    %p
      %span.step-keyword
        &= step["keyword"]
      = step["name"]
- if @scenario["steps"]
  %h3 Steps:
  - @scenario["steps"].each do |step|
    %p
      %span.step-keyword
        = step["keyword"]
      = escape_once(step["name"])
      - if step["rows"]
        = haml :table, {:locals => {:rows => step["rows"]}, :layout => false}
- else
  %p{:class => 'alert-message error'}
    = "Where's Wally? This scenario has no steps!?"
- if @scenario["examples"]
  %h3 Examples:
  = haml :table, {:locals => {:rows => @scenario["examples"].first["rows"]}, :layout => false}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wally-0.0.47 lib/wally/views/scenario.haml
wally-0.0.46 lib/wally/views/scenario.haml
wally-0.0.45 lib/wally/views/scenario.haml
wally-0.0.44 lib/wally/views/scenario.haml
wally-0.0.43 lib/wally/views/scenario.haml
wally-0.0.42 lib/wally/views/scenario.haml
wally-0.0.41 lib/wally/views/scenario.haml