Sha256: d80869f842d056a14bcbb0655f56439e72d35560282595d6446eeaf3caca699a
Contents?: true
Size: 569 Bytes
Versions: 42
Compression:
Stored size: 569 Bytes
Contents
# frozen_string_literal: true require "rails/generators/test_unit" module TestUnit # :nodoc: module Generators # :nodoc: class SystemGenerator < Base # :nodoc: check_class_collision suffix: "Test" def create_test_files if !File.exist?(File.join("test/application_system_test_case.rb")) template "application_system_test_case.rb", File.join("test", "application_system_test_case.rb") end template "system_test.rb", File.join("test/system", class_path, "#{file_name.pluralize}_test.rb") end end end end
Version data entries
42 entries across 42 versions & 3 rubygems