Skip to content

Commit

Permalink
Move dependency requires to RubyRunner file
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdb committed Dec 20, 2024
1 parent 450a439 commit 8773e57
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions test/support/ruby_runner.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# frozen_string_literal: true

require 'open3'
require 'fileutils'

module RubyRunner
include FileUtils

Expand Down
1 change: 0 additions & 1 deletion test/test_rake_backtrace.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)
require "open3"

class TestBacktraceSuppression < Rake::TestCase # :nodoc:
def test_bin_rake_suppressed
Expand Down
2 changes: 0 additions & 2 deletions test/test_rake_functional.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)
require "fileutils"
require "open3"

class TestRakeFunctional < Rake::TestCase # :nodoc:
include RubyRunner
Expand Down
1 change: 0 additions & 1 deletion test/test_rake_reduce_compat.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)
require "open3"

class TestRakeReduceCompat < Rake::TestCase # :nodoc:
include RubyRunner
Expand Down

0 comments on commit 8773e57

Please sign in to comment.