]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
heat tests : Add missing headers to tests
authorSteven Hardy <shardy@redhat.com>
Thu, 5 Jul 2012 13:42:53 +0000 (14:42 +0100)
committerSteven Hardy <shardy@redhat.com>
Thu, 5 Jul 2012 17:08:40 +0000 (18:08 +0100)
Most of the tests lacked the apache licence boilerplate

Change-Id: I34ed0066a6f6751fc872f5286acfc7550319bc8f
Signed-off-by: Steven Hardy <shardy@redhat.com>
heat/tests/fakes.py
heat/tests/test_cfn.py
heat/tests/test_dependencies.py
heat/tests/test_manager.py
heat/tests/test_parser.py
heat/tests/test_resources.py
heat/tests/test_stacks.py
heat/tests/test_validate.py
heat/tests/test_waitcondition.py
heat/tests/test_watch.py
heat/tests/utils.py

index 248214ff00fafb08f177e3d547f4e2729d667d2f..5e986408dbb066872f040f6e1a6f428301061b78 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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.
+
+
 """
 A fake server that "responds" to API methods with pre-canned responses.
 
index 13892a27fee52a06496a6e387ab0d85cf5c056f3..28b8842d71e41c2af2336161a3159cf89cb08179 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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.
+
+
 ###
 ### an unparented test -- no encapsulating class, just any fn starting with
 ### 'test'.
index ddfd996687a4e0e196d6cc125bcea8b0021d34ee..3bcac0aa2a0d4ef4fc3944c0df80ad2fff3e5aa8 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 nose
 import unittest
 from nose.plugins.attrib import attr
index 9df0880be8da1862001be1b0b241f52509cbfedb..39382d4091e99b204b41d6c09ac16275604c6553 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 nose
 import unittest
 from nose.plugins.attrib import attr
index 8cc517c7813ebda3a87ddc637374111d1603e6b8..3a8511cb8f55701b5d27937e6d89f7067080719a 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 nose
 import unittest
 from nose.plugins.attrib import attr
index 45cfc6e5015fd2a6bcdcb0f2b577e6006c4a194f..c56dd191bcfe2837151d7213a959b708a42b39a3 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 sys
 import os
 
index 97d9bc50f323d7b5c61a75537fbca67c65482400..cc3156d56495ee17b8b0edf9cca24025e42813b5 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 sys
 import os
 
index 967872d19b9f5a301db4faf3b10aa1911c790a8f..7dea58218f51a521c992370b1b6856071cd916e8 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 sys
 import os
 
index 6d846344253b2eb1eae9f84aef56a9bcaca32343..15f2421a7cc2b1e4c5d37cd22b30d5d0f127c8a5 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 datetime import datetime
 import eventlet
 import json
index 76ebd39958102a647ad994badbdefeb0e52480cc..f0582f2a6f74b206e18f080e76cdae263efa11b2 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 datetime
 import mox
 import nose
index 7f1c5dc7157545ed70ed7d701c2dcd02dec984ba..745fbbe387b9930cc8dcca833c91f8dea3c0480c 100644 (file)
@@ -1,3 +1,18 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+#    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 unittest2