class Cucumber::Formatter::ApiDocs::Endpoint
Public Instance Methods
name()
click to toggle source
# File lib/cucumber/formatter/api_docs.rb, line 61 def name "#{verb} #{path}" end
sort_order()
click to toggle source
# File lib/cucumber/formatter/api_docs.rb, line 65 def sort_order VERB_ORDER.index(verb) || fail("Unable to look up verb for #{name}") end