Skip to content

check Rails configuration before modifying system test #561

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/generators/test_unit/scaffold/scaffold_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module TestUnit # :nodoc:
module Generators # :nodoc:
class ScaffoldGenerator < Base # :nodoc:
def fix_system_test
if turbo_defined?
if system_tests_enabled? && turbo_defined?
gsub_file File.join("test/system", class_path, "#{file_name.pluralize}_test.rb"),
/(click_on.*Destroy this.*)$/,
"accept_confirm { \\1 }"
Expand All @@ -16,6 +16,10 @@ def fix_system_test
def turbo_defined?
defined?(Turbo)
end

def system_tests_enabled?
defined?(Rails.configuration.generators) && Rails.configuration.generators.system_tests
end
end
end
end
Loading