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 "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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user