Require integration_command_test_case in testing_env.

This commit is contained in:
Markus Reiter 2016-11-13 21:35:20 +01:00
parent 9d82acbf30
commit 9dc1f8f3cd
62 changed files with 2 additions and 60 deletions

View File

@ -2,6 +2,7 @@ require "bundler"
require "fileutils" require "fileutils"
require "pathname" require "pathname"
require "formula" require "formula"
require "test/support/helper/test_case"
class IntegrationCommandTestCase < Homebrew::TestCase class IntegrationCommandTestCase < Homebrew::TestCase
def setup def setup

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -4,7 +4,6 @@ require "cleanup"
require "fileutils" require "fileutils"
require "pathname" require "pathname"
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestCleanup < IntegrationCommandTestCase class IntegrationCommandTestCleanup < IntegrationCommandTestCase
def test_cleanup def test_cleanup

View File

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

View File

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

View File

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

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestCreate < IntegrationCommandTestCase class IntegrationCommandTestCreate < IntegrationCommandTestCase
def test_create def test_create

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestPrefix < IntegrationCommandTestCase class IntegrationCommandTestPrefix < IntegrationCommandTestCase
def test_prefix def test_prefix

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestPrune < IntegrationCommandTestCase class IntegrationCommandTestPrune < IntegrationCommandTestCase
def test_prune def test_prune

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestPullOffline < IntegrationCommandTestCase class IntegrationCommandTestPullOffline < IntegrationCommandTestCase
def test_pull_offline def test_pull_offline

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestPull < IntegrationCommandTestCase class IntegrationCommandTestPull < IntegrationCommandTestCase
def test_pull def test_pull

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestReadall < IntegrationCommandTestCase class IntegrationCommandTestReadall < IntegrationCommandTestCase
def test_readall def test_readall

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestReinstallPinned < IntegrationCommandTestCase class IntegrationCommandTestReinstallPinned < IntegrationCommandTestCase
def test_reinstall_pinned def test_reinstall_pinned

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestReinstall < IntegrationCommandTestCase class IntegrationCommandTestReinstall < IntegrationCommandTestCase
def test_reinstall def test_reinstall

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestRepository < IntegrationCommandTestCase class IntegrationCommandTestRepository < IntegrationCommandTestCase
def test_repository def test_repository

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestSearch < IntegrationCommandTestCase class IntegrationCommandTestSearch < IntegrationCommandTestCase
def test_search def test_search

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestServices < IntegrationCommandTestCase class IntegrationCommandTestServices < IntegrationCommandTestCase
def test_services def test_services

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestSh < IntegrationCommandTestCase class IntegrationCommandTestSh < IntegrationCommandTestCase
def test_sh def test_sh

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestSwitch < IntegrationCommandTestCase class IntegrationCommandTestSwitch < IntegrationCommandTestCase
def test_switch def test_switch

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestTapNew < IntegrationCommandTestCase class IntegrationCommandTestTapNew < IntegrationCommandTestCase
def test_tap_readme def test_tap_readme

View File

@ -1,6 +1,5 @@
require "testing_env" require "testing_env"
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestTap < IntegrationCommandTestCase class IntegrationCommandTestTap < IntegrationCommandTestCase
def test_tap def test_tap

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestTestFormula < IntegrationCommandTestCase class IntegrationCommandTestTestFormula < IntegrationCommandTestCase
def test_test_formula def test_test_formula

View File

@ -1,4 +1,3 @@
require "test/support/helper/integration_command_test_case"
require "cmd/uninstall" require "cmd/uninstall"
class UninstallTests < Homebrew::TestCase class UninstallTests < Homebrew::TestCase

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestUnlink < IntegrationCommandTestCase class IntegrationCommandTestUnlink < IntegrationCommandTestCase
def test_unlink def test_unlink

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestUnlinkapps < IntegrationCommandTestCase class IntegrationCommandTestUnlinkapps < IntegrationCommandTestCase
def test_unlinkapps def test_unlinkapps

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestUnpack < IntegrationCommandTestCase class IntegrationCommandTestUnpack < IntegrationCommandTestCase
def test_unpack def test_unpack

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestUpgrade < IntegrationCommandTestCase class IntegrationCommandTestUpgrade < IntegrationCommandTestCase
def test_upgrade def test_upgrade

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestUses < IntegrationCommandTestCase class IntegrationCommandTestUses < IntegrationCommandTestCase
def test_uses def test_uses

View File

@ -1,5 +1,4 @@
require "testing_env" require "testing_env"
require "test/support/helper/integration_command_test_case"
class IntegrationCommandTestVersion < IntegrationCommandTestCase class IntegrationCommandTestVersion < IntegrationCommandTestCase
def test_version def test_version

View File

@ -18,3 +18,4 @@ rescue LoadError
end end
require "test/support/helper/test_case" require "test/support/helper/test_case"
require "test/support/helper/integration_command_test_case"