0015f9bc2f
Change-Id: I6c0e4974839f5aeda2b42b650a46e9c972128b47
13 lines
265 B
Python
13 lines
265 B
Python
#!/usr/bin/env python
|
|
#-*- coding:utf-8 -*-
|
|
# Author: Kun Huang <academicgareth@gmail.com>
|
|
|
|
from oslotest import base
|
|
|
|
class TestCase(base.BaseTestCase):
|
|
def setUp(self):
|
|
super(TestCase, self).setUp()
|
|
|
|
def test_run(self):
|
|
self.assertTrue(1)
|