Added some missing test stubs so we can better see coverage (and get a little syntax-level "testing").
This commit is contained in:
parent
1c5490e29d
commit
e6e354c483
32
test/unit/account/test_replicator.py
Normal file
32
test/unit/account/test_replicator.py
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Copyright (c) 2010 OpenStack, LLC.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
# implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
from swift.account import replicator
|
||||||
|
|
||||||
|
|
||||||
|
class TestReplicator(unittest.TestCase):
|
||||||
|
"""
|
||||||
|
swift.account.replicator is currently just a subclass with some class
|
||||||
|
variables overridden, but at least this test stub will ensure proper Python
|
||||||
|
syntax.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def test_placeholder(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
29
test/unit/common/test_bench.py
Normal file
29
test/unit/common/test_bench.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Copyright (c) 2010 OpenStack, LLC.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
# implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
# TODO: Tests
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
from swift.common import bench
|
||||||
|
|
||||||
|
|
||||||
|
class TestBench(unittest.TestCase):
|
||||||
|
|
||||||
|
def test_placeholder(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
29
test/unit/common/test_daemon.py
Normal file
29
test/unit/common/test_daemon.py
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Copyright (c) 2010 OpenStack, LLC.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
# implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
# TODO: Tests
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
from swift.common import daemon
|
||||||
|
|
||||||
|
|
||||||
|
class TestDaemon(unittest.TestCase):
|
||||||
|
|
||||||
|
def test_placeholder(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
@ -17,7 +17,10 @@
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
class TestAuditor(unittest.TestCase):
|
from swift.common import direct_client
|
||||||
|
|
||||||
|
|
||||||
|
class TestDirectClient(unittest.TestCase):
|
||||||
|
|
||||||
def test_placeholder(self):
|
def test_placeholder(self):
|
||||||
pass
|
pass
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
import unittest
|
import unittest
|
||||||
from swift.common import exceptions
|
from swift.common import exceptions
|
||||||
|
|
||||||
class TestAuditor(unittest.TestCase):
|
|
||||||
|
class TestExceptions(unittest.TestCase):
|
||||||
|
|
||||||
def test_placeholder(self):
|
def test_placeholder(self):
|
||||||
pass
|
pass
|
||||||
|
32
test/unit/container/test_replicator.py
Normal file
32
test/unit/container/test_replicator.py
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Copyright (c) 2010 OpenStack, LLC.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
# implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
from swift.container import replicator
|
||||||
|
|
||||||
|
|
||||||
|
class TestReplicator(unittest.TestCase):
|
||||||
|
"""
|
||||||
|
swift.container.replicator is currently just a subclass with some class
|
||||||
|
variables overridden, but at least this test stub will ensure proper Python
|
||||||
|
syntax.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def test_placeholder(self):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
Loading…
Reference in New Issue
Block a user