Initial commit from cookiecutter

Change-Id: Ia8fd7b9310e598b1e9d7c1eb3d2a484bc667432a
diff --git a/ironic_tempest_plugin/__init__.py b/ironic_tempest_plugin/__init__.py
new file mode 100644
index 0000000..bf6ebcf
--- /dev/null
+++ b/ironic_tempest_plugin/__init__.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+
+# 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 pbr.version
+
+
+__version__ = pbr.version.VersionInfo(
+    'ironic_tempest_plugin').version_string()
diff --git a/ironic_tempest_plugin/tests/__init__.py b/ironic_tempest_plugin/tests/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/ironic_tempest_plugin/tests/__init__.py
diff --git a/ironic_tempest_plugin/tests/base.py b/ironic_tempest_plugin/tests/base.py
new file mode 100644
index 0000000..1c30cdb
--- /dev/null
+++ b/ironic_tempest_plugin/tests/base.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+
+# Copyright 2010-2011 OpenStack Foundation
+# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
+#
+# 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.
+
+from oslotest import base
+
+
+class TestCase(base.BaseTestCase):
+
+    """Test case base class for all unit tests."""
diff --git a/ironic_tempest_plugin/tests/test_ironic_tempest_plugin.py b/ironic_tempest_plugin/tests/test_ironic_tempest_plugin.py
new file mode 100644
index 0000000..795b1fe
--- /dev/null
+++ b/ironic_tempest_plugin/tests/test_ironic_tempest_plugin.py
@@ -0,0 +1,28 @@
+# -*- coding: utf-8 -*-
+
+# 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.
+
+"""
+test_ironic_tempest_plugin
+----------------------------------
+
+Tests for `ironic_tempest_plugin` module.
+"""
+
+from ironic_tempest_plugin.tests import base
+
+
+class TestIronicTempestPlugin(base.TestCase):
+
+    def test_something(self):
+        pass