Method: Allure#add_link
- Defined in:
- lib/allure-ruby-commons.rb
permalink #add_link(url:, name: nil, type: "custom") ⇒ void
This method returns an undefined value.
Add link to current test case
148 149 150 151 152 |
# File 'lib/allure-ruby-commons.rb', line 148 def add_link(url:, name: nil, type: "custom") lifecycle.update_test_case do |test_case| test_case.links.push(Link.new(type, name || url, url)) end end |