File: test_port_mod.py

package info (click to toggle)
python-openflow 2021.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,224 kB
  • sloc: python: 6,906; sh: 4; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
"""PortMod tests."""
import unittest

from pyof.v0x04.controller2switch.port_mod import PortMod


class TestPortMod(unittest.TestCase):
    """PortMod test."""

    def test_min_size(self):
        """Test minimum message size."""
        self.assertEqual(40, PortMod().get_size())