From c232fdc4c5464858818f1a83c35ed5d0b7fba15a Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Thu, 1 Jul 2021 21:37:23 +0200 Subject: vyos.util: remove no longer needed copy_file helper method The IPSec ceritifcate handling is now done by storing the CA key inside the running configuration. --- src/tests/test_util.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/tests') diff --git a/src/tests/test_util.py b/src/tests/test_util.py index 1efd4868f..9bd27adc0 100644 --- a/src/tests/test_util.py +++ b/src/tests/test_util.py @@ -23,10 +23,3 @@ class TestVyOSUtil(TestCase): expected_data = {"foo_bar": {"baz_quux": None}} new_data = mangle_dict_keys(data, '-', '_') self.assertEqual(new_data, expected_data) - - def test_copy_file(self): - source = '/proc/cmdline' - destination = '/tmp/foo/cmdline' - copy_file(source, destination, True) - self.assertEqual(read_file(source), read_file(destination)) - -- cgit v1.2.3