File: helper_generator.rb

package info (click to toggle)
ruby-rspec-rails 7.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,796 kB
  • sloc: ruby: 11,068; sh: 198; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 380 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'generators/rspec'

module Rspec
  module Generators
    # @private
    class HelperGenerator < Base
      class_option :helper_specs, type: :boolean, default: true

      def generate_helper_spec
        return unless options[:helper_specs]

        template 'helper_spec.rb', target_path('helpers', class_path, "#{file_name}_helper_spec.rb")
      end
    end
  end
end