blob: 5fb7630464fb678ed590835ad8a9eb92f488e18e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
import unittest
from nose.tools import ok_, eq_
from ryu.app.simple_switch import SimpleSwitch
import logging
LOG = logging.getLogger(__name__)
class TestSimpleSwitch(unittest.TestCase):
def setUp(self):
pass
def tearDown(self):
pass
def testInit(self):
ss = SimpleSwitch()
ok_(True)
|