Merge pull request #1364 from reitermarkus/reorder-tests

Reorder and rename test files.
This commit is contained in:
Markus Reiter 2016-11-17 03:36:21 +01:00 committed by GitHub
commit e6933b90dc
210 changed files with 276 additions and 266 deletions

View File

@ -21,7 +21,7 @@ Lint/HandleExceptions:
- 'extend/pathname.rb' - 'extend/pathname.rb'
- 'formula.rb' - 'formula.rb'
- 'formula_versions.rb' - 'formula_versions.rb'
- 'test/test_ENV.rb' - 'test/ENV_test.rb'
# Offense count: 3 # Offense count: 3
Lint/IneffectiveAccessModifier: Lint/IneffectiveAccessModifier:
@ -51,7 +51,7 @@ Lint/RescueException:
- 'postinstall.rb' - 'postinstall.rb'
- 'readall.rb' - 'readall.rb'
- 'test.rb' - 'test.rb'
- 'test/test_ENV.rb' - 'test/ENV_test.rb'
- 'utils/fork.rb' - 'utils/fork.rb'
# Offense count: 1 # Offense count: 1
@ -90,7 +90,7 @@ Style/ClassVars:
Exclude: Exclude:
- 'dev-cmd/audit.rb' - 'dev-cmd/audit.rb'
- 'formula_installer.rb' - 'formula_installer.rb'
- 'test/testing_env.rb' - 'test/support/helper/fs_leak_logger.rb'
# Offense count: 13 # Offense count: 13
# Configuration parameters: AllowedVariables. # Configuration parameters: AllowedVariables.
@ -114,7 +114,7 @@ Style/MultilineBlockChain:
- 'dev-cmd/audit.rb' - 'dev-cmd/audit.rb'
- 'dev-cmd/man.rb' - 'dev-cmd/man.rb'
- 'diagnostic.rb' - 'diagnostic.rb'
- 'test/test_patching.rb' - 'test/patching_test.rb'
# Offense count: 4 # Offense count: 4
# Cop supports --auto-correct. # Cop supports --auto-correct.

View File

@ -8,15 +8,15 @@ end
# add Homebrew to load path # add Homebrew to load path
$LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew")) $LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew"))
$LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew/test/lib")) $LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew/test/support/lib"))
require "global" require "global"
# add Homebrew-Cask to load path # add Homebrew-Cask to load path
$LOAD_PATH.push(HOMEBREW_LIBRARY_PATH.join("cask", "lib").to_s) $LOAD_PATH.push(HOMEBREW_LIBRARY_PATH.join("cask", "lib").to_s)
require "test/helper/env" require "test/support/helper/env"
require "test/helper/shutup" require "test/support/helper/shutup"
Pathname.glob(HOMEBREW_LIBRARY_PATH.join("cask", "spec", "support", "*.rb")).each(&method(:require)) Pathname.glob(HOMEBREW_LIBRARY_PATH.join("cask", "spec", "support", "*.rb")).each(&method(:require))

View File

@ -6,15 +6,15 @@ require "simplecov" if ENV["HOMEBREW_TESTS_COVERAGE"]
# add Homebrew to load path # add Homebrew to load path
$LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew")) $LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew"))
$LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew/test/lib")) $LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_REPOSITORY"]}/Library/Homebrew/test/support/lib"))
require "global" require "global"
# add Homebrew-Cask to load path # add Homebrew-Cask to load path
$LOAD_PATH.push(HOMEBREW_LIBRARY_PATH.join("cask", "lib").to_s) $LOAD_PATH.push(HOMEBREW_LIBRARY_PATH.join("cask", "lib").to_s)
require "test/helper/env" require "test/support/helper/env"
require "test/helper/shutup" require "test/support/helper/shutup"
include Test::Helper::Env include Test::Helper::Env
include Test::Helper::Shutup include Test::Helper::Shutup

View File

@ -761,7 +761,7 @@ class FormulaAuditor
bin_names.each do |name| bin_names.each do |name|
["system", "shell_output", "pipe_output"].each do |cmd| ["system", "shell_output", "pipe_output"].each do |cmd|
if text =~ /(def test|test do).*#{cmd}[\(\s]+['"]#{Regexp.escape name}[\s'"]/m if text =~ /(def test|test do).*#{cmd}[\(\s]+['"]#{Regexp.escape name}[\s'"]/m
problem %(fully scope test #{cmd} calls e.g. #{cmd} "\#{bin}/#{name}") problem %Q(fully scope test #{cmd} calls e.g. #{cmd} "\#{bin}/#{name}")
end end
end end
end end

View File

@ -8,7 +8,7 @@ module Homebrew
module_function module_function
def tests def tests
(HOMEBREW_LIBRARY/"Homebrew").cd do HOMEBREW_LIBRARY_PATH.cd do
ENV.delete "HOMEBREW_VERBOSE" ENV.delete "HOMEBREW_VERBOSE"
ENV.delete "VERBOSE" ENV.delete "VERBOSE"
ENV["HOMEBREW_NO_ANALYTICS_THIS_RUN"] = "1" ENV["HOMEBREW_NO_ANALYTICS_THIS_RUN"] = "1"
@ -44,8 +44,8 @@ module Homebrew
# Make it easier to reproduce test runs. # Make it easier to reproduce test runs.
ENV["SEED"] = ARGV.next if ARGV.include? "--seed" ENV["SEED"] = ARGV.next if ARGV.include? "--seed"
files = Dir["test/test_*.rb"] files = Dir.glob("test/**/*_test.rb")
files -= Dir["test/test_os_mac_*.rb"] unless OS.mac? .reject { |p| !OS.mac? && p.start_with?("test/os/mac/") }
opts = [] opts = []
opts << "--serialize-stdout" if ENV["CI"] opts << "--serialize-stdout" if ENV["CI"]
@ -54,20 +54,18 @@ module Homebrew
args << "--trace" if ARGV.include? "--trace" args << "--trace" if ARGV.include? "--trace"
if ARGV.value("only") if ARGV.value("only")
ENV["HOMEBREW_TESTS_ONLY"] = "1" test_name, test_method = ARGV.value("only").split(":", 2)
test_name, test_method = ARGV.value("only").split("/", 2) files = Dir.glob("test/{#{test_name},#{test_name}/**/*}_test.rb")
files = ["test/test_#{test_name}.rb"]
args << "--name=test_#{test_method}" if test_method args << "--name=test_#{test_method}" if test_method
end end
args += ARGV.named.select { |v| v[/^TEST(OPTS)?=/] } args += ARGV.named.select { |v| v[/^TEST(OPTS)?=/] }
system "bundle", "exec", "parallel_test", *opts, system "bundle", "exec", "parallel_test", *opts, "--", *args, "--", *files
"--", *args, "--", *files
Homebrew.failed = !$?.success? Homebrew.failed = !$?.success?
if (fs_leak_log = HOMEBREW_LIBRARY/"Homebrew/test/fs_leak_log").file? if (fs_leak_log = HOMEBREW_LIBRARY_PATH/"tmp/fs_leak.log").file?
fs_leak_log_content = fs_leak_log.read fs_leak_log_content = fs_leak_log.read
unless fs_leak_log_content.empty? unless fs_leak_log_content.empty?
opoo "File leak is detected" opoo "File leak is detected"

View File

@ -1,6 +1,6 @@
require "testing_env" require "testing_env"
require "extend/ENV" require "extend/ENV"
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestEnv < IntegrationCommandTestCase class IntegrationCommandTestEnv < IntegrationCommandTestCase
def test_env def test_env

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestAnalytics < IntegrationCommandTestCase class IntegrationCommandTestAnalytics < IntegrationCommandTestCase
def test_analytics def test_analytics

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestBottle < IntegrationCommandTestCase class IntegrationCommandTestBottle < IntegrationCommandTestCase
def test_bottle def test_bottle

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestBundle < IntegrationCommandTestCase class IntegrationCommandTestBundle < IntegrationCommandTestCase
def test_bundle def test_bundle

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCacheFormula < IntegrationCommandTestCase class IntegrationCommandTestCacheFormula < IntegrationCommandTestCase
def test_cache_formula def test_cache_formula

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCache < IntegrationCommandTestCase class IntegrationCommandTestCache < IntegrationCommandTestCase
def test_cache def test_cache

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCask < IntegrationCommandTestCase class IntegrationCommandTestCask < IntegrationCommandTestCase
def test_cask def test_cask

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCat < IntegrationCommandTestCase class IntegrationCommandTestCat < IntegrationCommandTestCase
def test_cat def test_cat

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCellarFormula < IntegrationCommandTestCase class IntegrationCommandTestCellarFormula < IntegrationCommandTestCase
def test_cellar_formula def test_cellar_formula

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCellar < IntegrationCommandTestCase class IntegrationCommandTestCellar < IntegrationCommandTestCase
def test_cellar def test_cellar

View File

@ -12,7 +12,7 @@ class ChecksumVerificationTests < Homebrew::TestCase
def formula(&block) def formula(&block)
super do super do
url "file://#{TEST_DIRECTORY}/tarballs/testball-0.1.tbz" url "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz"
instance_eval(&block) instance_eval(&block)
end end
end end

View File

@ -17,8 +17,8 @@ class CleanerTests < Homebrew::TestCase
def test_clean_file def test_clean_file
@f.bin.mkpath @f.bin.mkpath
@f.lib.mkpath @f.lib.mkpath
cp "#{TEST_DIRECTORY}/mach/a.out", @f.bin cp "#{TEST_FIXTURE_DIR}/mach/a.out", @f.bin
cp Dir["#{TEST_DIRECTORY}/mach/*.dylib"], @f.lib cp Dir["#{TEST_FIXTURE_DIR}/mach/*.dylib"], @f.lib
Cleaner.new(@f).clean Cleaner.new(@f).clean

View File

@ -1,9 +1,9 @@
require "testing_env" require "testing_env"
require "testball" require "test/support/fixtures/testball"
require "cleanup" require "cleanup"
require "fileutils" require "fileutils"
require "pathname" require "pathname"
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCleanup < IntegrationCommandTestCase class IntegrationCommandTestCleanup < IntegrationCommandTestCase
def test_cleanup def test_cleanup

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCommand < IntegrationCommandTestCase class IntegrationCommandTestCommand < IntegrationCommandTestCase
def test_command def test_command

View File

@ -2,7 +2,7 @@ require "testing_env"
require "cmd/command" require "cmd/command"
require "cmd/commands" require "cmd/commands"
require "fileutils" require "fileutils"
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCommands < IntegrationCommandTestCase class IntegrationCommandTestCommands < IntegrationCommandTestCase
def test_commands def test_commands

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestConfig < IntegrationCommandTestCase class IntegrationCommandTestConfig < IntegrationCommandTestCase
def test_config def test_config

View File

@ -1,8 +1,8 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCreate < IntegrationCommandTestCase class IntegrationCommandTestCreate < IntegrationCommandTestCase
def test_create def test_create
url = "file://#{File.expand_path("..", __FILE__)}/tarballs/testball-0.1.tbz" url = "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz"
cmd("create", url, "HOMEBREW_EDITOR" => "/bin/cat") cmd("create", url, "HOMEBREW_EDITOR" => "/bin/cat")
formula_file = CoreTap.new.formula_dir/"testball.rb" formula_file = CoreTap.new.formula_dir/"testball.rb"

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestCustomCommand < IntegrationCommandTestCase class IntegrationCommandTestCustomCommand < IntegrationCommandTestCase
def test_custom_command def test_custom_command

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestDeps < IntegrationCommandTestCase class IntegrationCommandTestDeps < IntegrationCommandTestCase
def test_deps def test_deps

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestDesc < IntegrationCommandTestCase class IntegrationCommandTestDesc < IntegrationCommandTestCase
def test_desc def test_desc

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestDoctor < IntegrationCommandTestCase class IntegrationCommandTestDoctor < IntegrationCommandTestCase
def test_doctor def test_doctor

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestEdit < IntegrationCommandTestCase class IntegrationCommandTestEdit < IntegrationCommandTestCase
def test_edit def test_edit

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestFetch < IntegrationCommandTestCase class IntegrationCommandTestFetch < IntegrationCommandTestCase
def test_fetch def test_fetch

View File

@ -3,8 +3,8 @@ require "formula"
require "formula_installer" require "formula_installer"
require "keg" require "keg"
require "tab" require "tab"
require "testball" require "test/support/fixtures/testball"
require "testball_bottle" require "test/support/fixtures/testball_bottle"
class InstallBottleTests < Homebrew::TestCase class InstallBottleTests < Homebrew::TestCase
def temporary_bottle_install(formula) def temporary_bottle_install(formula)

View File

@ -3,8 +3,8 @@ require "formula"
require "formula_installer" require "formula_installer"
require "keg" require "keg"
require "tab" require "tab"
require "testball" require "test/support/fixtures/testball"
require "testball_bottle" require "test/support/fixtures/testball_bottle"
class InstallTests < Homebrew::TestCase class InstallTests < Homebrew::TestCase
def temporary_install(formula) def temporary_install(formula)

View File

@ -1,5 +1,5 @@
require "testing_env" require "testing_env"
require "testball" require "test/support/fixtures/testball"
require "formula" require "formula"
class FormulaTests < Homebrew::TestCase class FormulaTests < Homebrew::TestCase

View File

@ -18,11 +18,11 @@ class FormularyFactoryTest < Homebrew::TestCase
def setup def setup
@name = "testball_bottle" @name = "testball_bottle"
@path = CoreTap.new.formula_dir/"#{@name}.rb" @path = CoreTap.new.formula_dir/"#{@name}.rb"
@bottle_dir = Pathname.new("#{File.expand_path("..", __FILE__)}/bottles") @bottle_dir = Pathname.new("#{TEST_FIXTURE_DIR}/bottles")
@bottle = @bottle_dir/"testball_bottle-0.1.#{Utils::Bottles.tag}.bottle.tar.gz" @bottle = @bottle_dir/"testball_bottle-0.1.#{Utils::Bottles.tag}.bottle.tar.gz"
@path.write <<-EOS.undent @path.write <<-EOS.undent
class #{Formulary.class_s(@name)} < Formula class #{Formulary.class_s(@name)} < Formula
url "file://#{File.expand_path("..", __FILE__)}/tarballs/testball-0.1.tbz" url "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz"
sha256 TESTBALL_SHA256 sha256 TESTBALL_SHA256
bottle do bottle do

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestHelp < IntegrationCommandTestCase class IntegrationCommandTestHelp < IntegrationCommandTestCase
def test_help def test_help

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestHome < IntegrationCommandTestCase class IntegrationCommandTestHome < IntegrationCommandTestCase
def test_home def test_home

View File

@ -1,7 +1,7 @@
require "testing_env" require "testing_env"
require "cmd/info" require "cmd/info"
require "formula" require "formula"
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestInfo < IntegrationCommandTestCase class IntegrationCommandTestInfo < IntegrationCommandTestCase
def test_info def test_info

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestInstall < IntegrationCommandTestCase class IntegrationCommandTestInstall < IntegrationCommandTestCase
def test_install def test_install

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestIrb < IntegrationCommandTestCase class IntegrationCommandTestIrb < IntegrationCommandTestCase
def test_irb def test_irb

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestLeaves < IntegrationCommandTestCase class IntegrationCommandTestLeaves < IntegrationCommandTestCase
def test_leaves def test_leaves

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestLink < IntegrationCommandTestCase class IntegrationCommandTestLink < IntegrationCommandTestCase
def test_link def test_link

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestLinkapps < IntegrationCommandTestCase class IntegrationCommandTestLinkapps < IntegrationCommandTestCase
def test_linkapps def test_linkapps

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestList < IntegrationCommandTestCase class IntegrationCommandTestList < IntegrationCommandTestCase
def test_list def test_list

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestLogFormula < IntegrationCommandTestCase class IntegrationCommandTestLogFormula < IntegrationCommandTestCase
def test_log_formula def test_log_formula

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestLog < IntegrationCommandTestCase class IntegrationCommandTestLog < IntegrationCommandTestCase
def test_log def test_log

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestMigrate < IntegrationCommandTestCase class IntegrationCommandTestMigrate < IntegrationCommandTestCase
def test_migrate def test_migrate

View File

@ -1,6 +1,6 @@
require "testing_env" require "testing_env"
require "migrator" require "migrator"
require "testball" require "test/support/fixtures/testball"
require "tab" require "tab"
require "keg" require "keg"

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestMissing < IntegrationCommandTestCase class IntegrationCommandTestMissing < IntegrationCommandTestCase
def setup def setup

View File

@ -1,6 +1,6 @@
require "testing_env" require "testing_env"
require "options" require "options"
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestOptions < IntegrationCommandTestCase class IntegrationCommandTestOptions < IntegrationCommandTestCase
def test_options def test_options

View File

@ -41,7 +41,7 @@ class MachOPathnameTests < Homebrew::TestCase
end end
def test_mach_o_executable def test_mach_o_executable
pn = Pathname.new("#{TEST_DIRECTORY}/mach/a.out") pn = Pathname.new("#{TEST_FIXTURE_DIR}/mach/a.out")
assert_predicate pn, :universal? assert_predicate pn, :universal?
refute_predicate pn, :i386? refute_predicate pn, :i386?
refute_predicate pn, :x86_64? refute_predicate pn, :x86_64?
@ -93,7 +93,7 @@ class MachOPathnameTests < Homebrew::TestCase
end end
def test_non_mach_o def test_non_mach_o
pn = Pathname.new("#{TEST_DIRECTORY}/tarballs/testball-0.1.tbz") pn = Pathname.new("#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz")
refute_predicate pn, :universal? refute_predicate pn, :universal?
refute_predicate pn, :i386? refute_predicate pn, :i386?
refute_predicate pn, :x86_64? refute_predicate pn, :x86_64?

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestOutdated < IntegrationCommandTestCase class IntegrationCommandTestOutdated < IntegrationCommandTestCase
def test_outdated def test_outdated

View File

@ -2,12 +2,12 @@ require "testing_env"
require "formula" require "formula"
class PatchingTests < Homebrew::TestCase class PatchingTests < Homebrew::TestCase
TESTBALL_URL = "file://#{TEST_DIRECTORY}/tarballs/testball-0.1.tbz".freeze TESTBALL_URL = "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz".freeze
TESTBALL_PATCHES_URL = "file://#{TEST_DIRECTORY}/tarballs/testball-0.1-patches.tgz".freeze TESTBALL_PATCHES_URL = "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1-patches.tgz".freeze
PATCH_URL_A = "file://#{TEST_DIRECTORY}/patches/noop-a.diff".freeze PATCH_URL_A = "file://#{TEST_FIXTURE_DIR}/patches/noop-a.diff".freeze
PATCH_URL_B = "file://#{TEST_DIRECTORY}/patches/noop-b.diff".freeze PATCH_URL_B = "file://#{TEST_FIXTURE_DIR}/patches/noop-b.diff".freeze
PATCH_A_CONTENTS = File.read "#{TEST_DIRECTORY}/patches/noop-a.diff" PATCH_A_CONTENTS = File.read "#{TEST_FIXTURE_DIR}/patches/noop-a.diff"
PATCH_B_CONTENTS = File.read "#{TEST_DIRECTORY}/patches/noop-b.diff" PATCH_B_CONTENTS = File.read "#{TEST_FIXTURE_DIR}/patches/noop-b.diff"
APPLY_A = "noop-a.diff".freeze APPLY_A = "noop-a.diff".freeze
APPLY_B = "noop-b.diff".freeze APPLY_B = "noop-b.diff".freeze
APPLY_C = "noop-c.diff".freeze APPLY_C = "noop-c.diff".freeze

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestPinUnpin < IntegrationCommandTestCase class IntegrationCommandTestPinUnpin < IntegrationCommandTestCase
def test_pin_unpin def test_pin_unpin

View File

@ -1,4 +1,4 @@
require "helper/integration_command_test_case" require "testing_env"
class IntegrationCommandTestPrefixFormula < IntegrationCommandTestCase class IntegrationCommandTestPrefixFormula < IntegrationCommandTestCase
def test_prefix_formula def test_prefix_formula

Some files were not shown because too many files have changed in this diff Show More