Repository: libcloud Updated Branches: refs/heads/trunk 57984aa5d -> 81852763c
Add missing license headers. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/81852763 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/81852763 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/81852763 Branch: refs/heads/trunk Commit: 81852763cf7f6304ff05493bf861040ccfc406db Parents: 57984aa Author: Tomaz Muraus <[email protected]> Authored: Fri Apr 15 20:50:44 2016 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Fri Apr 15 20:50:44 2016 +0200 ---------------------------------------------------------------------- libcloud/test/common/test_aliyun.py | 15 +++++++++++++++ libcloud/test/common/test_aws.py | 15 +++++++++++++++ libcloud/test/common/test_base.py | 15 +++++++++++++++ libcloud/test/common/test_nfsn.py | 18 +++++++++++++++++- 4 files changed, 62 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/81852763/libcloud/test/common/test_aliyun.py ---------------------------------------------------------------------- diff --git a/libcloud/test/common/test_aliyun.py b/libcloud/test/common/test_aliyun.py index da071ba..0050c09 100644 --- a/libcloud/test/common/test_aliyun.py +++ b/libcloud/test/common/test_aliyun.py @@ -1,3 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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 unittest http://git-wip-us.apache.org/repos/asf/libcloud/blob/81852763/libcloud/test/common/test_aws.py ---------------------------------------------------------------------- diff --git a/libcloud/test/common/test_aws.py b/libcloud/test/common/test_aws.py index d2ff0a2..ef905f0 100644 --- a/libcloud/test/common/test_aws.py +++ b/libcloud/test/common/test_aws.py @@ -1,3 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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 unittest from datetime import datetime http://git-wip-us.apache.org/repos/asf/libcloud/blob/81852763/libcloud/test/common/test_base.py ---------------------------------------------------------------------- diff --git a/libcloud/test/common/test_base.py b/libcloud/test/common/test_base.py index 9c7070d..b6e412b 100644 --- a/libcloud/test/common/test_base.py +++ b/libcloud/test/common/test_base.py @@ -1,3 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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 import sys http://git-wip-us.apache.org/repos/asf/libcloud/blob/81852763/libcloud/test/common/test_nfsn.py ---------------------------------------------------------------------- diff --git a/libcloud/test/common/test_nfsn.py b/libcloud/test/common/test_nfsn.py index 5e77f32..341211a 100644 --- a/libcloud/test/common/test_nfsn.py +++ b/libcloud/test/common/test_nfsn.py @@ -1,8 +1,24 @@ -from mock import Mock, patch +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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 string import sys import unittest +from mock import Mock, patch + from libcloud.common.nfsn import NFSNConnection from libcloud.test import LibcloudTestCase, MockHttp from libcloud.utils.py3 import httplib
