backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / tests / unit / sample / test_sample1.py
1 # vim: tabstop=4 shiftwidth=4 softtabstop=4
2
3 import unittest
4 from nose.tools import ok_, eq_
5 # from ryu.app.simple_switch import SimpleSwitch
6
7 import logging
8
9
10 LOG = logging.getLogger('ryu.tests.test_sample1')
11
12
13 class TestSample1(unittest.TestCase):
14
15     def testS1Func1(self):
16         LOG.debug('testS1Func1 - START')
17         ok_(True)
18
19     def testS1Func2(self):
20         ok_(True)