Require integration_command_test_case in testing_env.
This commit is contained in:
parent
9d82acbf30
commit
9dc1f8f3cd
@ -2,6 +2,7 @@ require "bundler"
|
||||
require "fileutils"
|
||||
require "pathname"
|
||||
require "formula"
|
||||
require "test/support/helper/test_case"
|
||||
|
||||
class IntegrationCommandTestCase < Homebrew::TestCase
|
||||
def setup
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestAnalytics < IntegrationCommandTestCase
|
||||
def test_analytics
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestBottle < IntegrationCommandTestCase
|
||||
def test_bottle
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestBundle < IntegrationCommandTestCase
|
||||
def test_bundle
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCacheFormula < IntegrationCommandTestCase
|
||||
def test_cache_formula
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCache < IntegrationCommandTestCase
|
||||
def test_cache
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCask < IntegrationCommandTestCase
|
||||
def test_cask
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCat < IntegrationCommandTestCase
|
||||
def test_cat
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCellarFormula < IntegrationCommandTestCase
|
||||
def test_cellar_formula
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCellar < IntegrationCommandTestCase
|
||||
def test_cellar
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCommand < IntegrationCommandTestCase
|
||||
def test_command
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestConfig < IntegrationCommandTestCase
|
||||
def test_config
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCreate < IntegrationCommandTestCase
|
||||
def test_create
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestCustomCommand < IntegrationCommandTestCase
|
||||
def test_custom_command
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestDeps < IntegrationCommandTestCase
|
||||
def test_deps
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestDesc < IntegrationCommandTestCase
|
||||
def test_desc
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestDoctor < IntegrationCommandTestCase
|
||||
def test_doctor
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestEdit < IntegrationCommandTestCase
|
||||
def test_edit
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestFetch < IntegrationCommandTestCase
|
||||
def test_fetch
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestHelp < IntegrationCommandTestCase
|
||||
def test_help
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestHome < IntegrationCommandTestCase
|
||||
def test_home
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestInstall < IntegrationCommandTestCase
|
||||
def test_install
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestIrb < IntegrationCommandTestCase
|
||||
def test_irb
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestLeaves < IntegrationCommandTestCase
|
||||
def test_leaves
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestLink < IntegrationCommandTestCase
|
||||
def test_link
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestLinkapps < IntegrationCommandTestCase
|
||||
def test_linkapps
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestList < IntegrationCommandTestCase
|
||||
def test_list
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestLogFormula < IntegrationCommandTestCase
|
||||
def test_log_formula
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestLog < IntegrationCommandTestCase
|
||||
def test_log
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestMigrate < IntegrationCommandTestCase
|
||||
def test_migrate
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestMissing < IntegrationCommandTestCase
|
||||
def setup
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestOutdated < IntegrationCommandTestCase
|
||||
def test_outdated
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestPinUnpin < IntegrationCommandTestCase
|
||||
def test_pin_unpin
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestPrefixFormula < IntegrationCommandTestCase
|
||||
def test_prefix_formula
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestPrefix < IntegrationCommandTestCase
|
||||
def test_prefix
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestPrune < IntegrationCommandTestCase
|
||||
def test_prune
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestPullOffline < IntegrationCommandTestCase
|
||||
def test_pull_offline
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestPull < IntegrationCommandTestCase
|
||||
def test_pull
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestReadall < IntegrationCommandTestCase
|
||||
def test_readall
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestReinstallPinned < IntegrationCommandTestCase
|
||||
def test_reinstall_pinned
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestReinstall < IntegrationCommandTestCase
|
||||
def test_reinstall
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestRepository < IntegrationCommandTestCase
|
||||
def test_repository
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestSearch < IntegrationCommandTestCase
|
||||
def test_search
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestServices < IntegrationCommandTestCase
|
||||
def test_services
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestSh < IntegrationCommandTestCase
|
||||
def test_sh
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestSwitch < IntegrationCommandTestCase
|
||||
def test_switch
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestTapNew < IntegrationCommandTestCase
|
||||
def test_tap_readme
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
require "testing_env"
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestTap < IntegrationCommandTestCase
|
||||
def test_tap
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestTestFormula < IntegrationCommandTestCase
|
||||
def test_test_formula
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
require "cmd/uninstall"
|
||||
|
||||
class UninstallTests < Homebrew::TestCase
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestUnlink < IntegrationCommandTestCase
|
||||
def test_unlink
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestUnlinkapps < IntegrationCommandTestCase
|
||||
def test_unlinkapps
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestUnpack < IntegrationCommandTestCase
|
||||
def test_unpack
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestUpgrade < IntegrationCommandTestCase
|
||||
def test_upgrade
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestUses < IntegrationCommandTestCase
|
||||
def test_uses
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
require "testing_env"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
class IntegrationCommandTestVersion < IntegrationCommandTestCase
|
||||
def test_version
|
||||
|
||||
@ -18,3 +18,4 @@ rescue LoadError
|
||||
end
|
||||
|
||||
require "test/support/helper/test_case"
|
||||
require "test/support/helper/integration_command_test_case"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user