
After forking from Ryu, the namespace needs to change from 'ryu' to 'os_ken' so that it won't collide with the namespace of the old library. Change-Id: I807a8785e525cc02825d15a1a01eec3d5d20cce4
15 lines
277 B
Python
15 lines
277 B
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
import unittest
|
|
from nose.tools import ok_, eq_
|
|
# from os_ken.app.simple_switch import SimpleSwitch
|
|
|
|
|
|
class TestSample2(unittest.TestCase):
|
|
|
|
def testS2Func1(self):
|
|
ok_(True)
|
|
|
|
def testS2Func2(self):
|
|
ok_(True)
|