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 "pathname"
require "formula"
require "test/support/helper/test_case"
class IntegrationCommandTestCase < Homebrew::TestCase
def setup

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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