From bdff11e1fc53fc1523b05e6345bce9081c602c51 Mon Sep 17 00:00:00 2001 From: Chris de Bruin Date: Fri, 27 Jan 2023 10:07:24 +0100 Subject: [PATCH] Allow use of bastion host --- test/configuration_test.rb | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/configuration_test.rb b/test/configuration_test.rb index 808b9c62..d4206dfe 100644 --- a/test/configuration_test.rb +++ b/test/configuration_test.rb @@ -153,15 +153,6 @@ class ConfigurationTest < ActiveSupport::TestCase assert_equal "app@1.2.3.4", @config.ssh_options[:proxy].jump_proxies end - test "master key" do - assert_equal "456", @config.master_key - end - - test "skip master key" do - config = Mrsk::Configuration.new(@deploy.tap { |c| c[:skip_master_key] = true }) - assert_nil @config.master_key - end - test "volume_args" do assert_equal ["--volume", "/local/path:/container/path"], @config.volume_args end