Skip to content

Commit

Permalink
Removed unused files and code
Browse files Browse the repository at this point in the history
  • Loading branch information
assrinivasan committed Jun 3, 2024
1 parent 34d3b7c commit aa61c27
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 71 deletions.
1 change: 0 additions & 1 deletion tests/mocked_libs/sonic_platform_base/__init__.py

This file was deleted.

Empty file.
23 changes: 0 additions & 23 deletions tests/mocked_libs/sonic_platform_base/sonic_ssd/ssd_generic.py

This file was deleted.

Empty file.
23 changes: 0 additions & 23 deletions tests/mocked_libs/sonic_platform_base/sonic_storage/ssd.py

This file was deleted.

24 changes: 0 additions & 24 deletions tests/ssdutil_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import sys
import os
from unittest.mock import patch, MagicMock
import sonic_platform_base # noqa: F401

Expand All @@ -9,29 +8,6 @@

import ssdutil.main as ssdutil # noqa: E402

# Add mocked_libs path so that the file can load mocked modules from there
tests_path = os.path.dirname(os.path.abspath(__file__))
mocked_libs_path = os.path.join(tests_path, "mocked_libs")
sys.path.insert(0, mocked_libs_path)

test_path = os.path.dirname(os.path.abspath(__file__))
modules_path = os.path.dirname(test_path)
sys.path.insert(0, modules_path)

ssdutil_output = """
Device Model : InnoDisk Corp. - mSATA 3IE3
Health : 99%
Temperature : 30C
"""

ssdutil_verbose_output = """
Device Model : InnoDisk Corp. - mSATA 3IE3
Firmware : S16425cG
Serial : BCA12310040200027
Health : 99%
Temperature : 30C
"""


class Ssd():

Expand Down

0 comments on commit aa61c27

Please sign in to comment.