You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

unit.rb 213 B

2 years ago
12345678910111213
  1. # frozen_string_literal: true
  2. module Cucumber
  3. class Unit
  4. def initialize(step_collection)
  5. @step_collection = step_collection
  6. end
  7. def step_count
  8. @step_collection.length
  9. end
  10. end
  11. end

No Description

Contributors (1)