Sha256: 52029b4b519a7990042ad0b5ddddc772f5a8e1a9bfa4e9949e10eb986b292a31
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
<div id="<%= sid %>" class="modal modal-fixed-footer"> <div class="modal-content"> <% if scenario['tags'] %> <% scenario['tags'].each do |tag| %> <div class="chip"><i class="material-icons rotate-45">label</i><%= tag['name'] %></div> <% end %> <% end %> <h5><%= scenario['name'] %> (<%= duration(scenario['duration']) %>)</h5> <%= feature['uri'] %>:<%= scenario['line'] %> <% if scenario['before'] %> <% scenario['before'].each do |hook| %> <%= get('hook').result(binding) %> <% end %> <% end %> <ul class="collection stepList"> <% scenario['steps'].each do |step| %> <%= get('step').result(binding) %> <% end %> </ul> <% if scenario['after'] %> <% scenario['after'].each do |hook| %> <%= get('hook').result(binding) %> <% end %> <% end %> </div> <div class="modal-footer"> <span class="modal-action modal-close waves-effect waves-green btn-flat"><i class="material-icons">close</i></span> </div> </div>
Version data entries
7 entries across 7 versions & 2 rubygems