diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-07-01 21:37:23 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-07-01 21:38:06 +0200 |
commit | c232fdc4c5464858818f1a83c35ed5d0b7fba15a (patch) | |
tree | bf2ed208d7535b7377caefe58533588c95ebcb5c /src/tests | |
parent | 469e57398f3a9700fee210a94e57601f51466f43 (diff) | |
download | vyos-1x-c232fdc4c5464858818f1a83c35ed5d0b7fba15a.tar.gz vyos-1x-c232fdc4c5464858818f1a83c35ed5d0b7fba15a.zip |
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.
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test_util.py | 7 |
1 files changed, 0 insertions, 7 deletions
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)) - |