Merge lp:~elopio/ubuntuone-testing/license-and-docstring into lp:ubuntuone-testing

Proposed by Leo Arias
Status: Merged
Approved by: Leo Arias
Approved revision: 30
Merged at revision: 30
Proposed branch: lp:~elopio/ubuntuone-testing/license-and-docstring
Merge into: lp:ubuntuone-testing
Prerequisite: lp:~elopio/ubuntuone-testing/tests-rename
Diff against target: 269 lines (+198/-0)
9 files modified
ubuntuone/web/tests/sst/payments/u1webp001_paymusicstreaming.py (+22/-0)
ubuntuone/web/tests/sst/payments/u1webp002_payadditionalstorage.py (+22/-0)
ubuntuone/web/tests/sst/payments/u1webp003_paywithrefusedcard.py (+22/-0)
ubuntuone/web/tests/sst/services/u1webse001_information.py (+22/-0)
ubuntuone/web/tests/sst/services/u1webse002_musicstreamingmonthly.py (+22/-0)
ubuntuone/web/tests/sst/services/u1webse003_musicstreamingannually.py (+22/-0)
ubuntuone/web/tests/sst/services/u1webse004_choosestorageamount.py (+22/-0)
ubuntuone/web/tests/sst/services/u1webse005_addmonthlystorage.py (+22/-0)
ubuntuone/web/tests/sst/services/u1webse006_addannuallystorage.py (+22/-0)
To merge this branch: bzr merge lp:~elopio/ubuntuone-testing/license-and-docstring
Reviewer Review Type Date Requested Status
Rick McBride (community) Approve
Review via email: mp+76089@code.launchpad.net

Commit message

Added the license and a docstring to test files. (Fixes LP: #854128)

Description of the change

Added the license and a docstring to test files. (LP: #854128)

To post a comment you must log in.
Revision history for this message
Rick McBride (rmcbride) wrote :

+1

Thanks for adding that.

Revision history for this message
Rick McBride (rmcbride) :
review: Approve
Revision history for this message
Ubuntu One Auto Pilot (otto-pilot) wrote :

The prerequisite lp:~elopio/ubuntuone-testing/tests-rename has not yet been merged into lp:ubuntuone-testing.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'ubuntuone/web/tests/sst/payments/u1webp001_paymusicstreaming.py'
--- ubuntuone/web/tests/sst/payments/u1webp001_paymusicstreaming.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/payments/u1webp001_paymusicstreaming.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Pay for the music streaming service."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/payments/u1webp002_payadditionalstorage.py'
--- ubuntuone/web/tests/sst/payments/u1webp002_payadditionalstorage.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/payments/u1webp002_payadditionalstorage.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Pay for the additional sotrage service."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/payments/u1webp003_paywithrefusedcard.py'
--- ubuntuone/web/tests/sst/payments/u1webp003_paywithrefusedcard.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/payments/u1webp003_paywithrefusedcard.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Pay for a service with a refused card."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/services/u1webse001_information.py'
--- ubuntuone/web/tests/sst/services/u1webse001_information.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/services/u1webse001_information.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Verify the information about the services offered."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/services/u1webse002_musicstreamingmonthly.py'
--- ubuntuone/web/tests/sst/services/u1webse002_musicstreamingmonthly.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/services/u1webse002_musicstreamingmonthly.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Buy the monthly music streaming service."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/services/u1webse003_musicstreamingannually.py'
--- ubuntuone/web/tests/sst/services/u1webse003_musicstreamingannually.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/services/u1webse003_musicstreamingannually.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Buy the annually music streaming service."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/services/u1webse004_choosestorageamount.py'
--- ubuntuone/web/tests/sst/services/u1webse004_choosestorageamount.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/services/u1webse004_choosestorageamount.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Increase and decrease the amount of storage to buy."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/services/u1webse005_addmonthlystorage.py'
--- ubuntuone/web/tests/sst/services/u1webse005_addmonthlystorage.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/services/u1webse005_addmonthlystorage.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Buy the monthly extra storage service."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:
426
=== modified file 'ubuntuone/web/tests/sst/services/u1webse006_addannuallystorage.py'
--- ubuntuone/web/tests/sst/services/u1webse006_addannuallystorage.py 2011-09-15 07:32:09 +0000
+++ ubuntuone/web/tests/sst/services/u1webse006_addannuallystorage.py 2011-09-19 19:14:17 +0000
@@ -1,3 +1,25 @@
1# -*- coding: utf-8 -*-
2
3# Authors:
4# Rick McBride <rick.mcbride@canonical.com>
5# Leo Arias <leo.arias@canonical.com>
6#
7# Copyright 2011 Canonical Ltd.
8#
9# This program is free software: you can redistribute it and/or modify it
10# under the terms of the GNU General Public License version 3, as published
11# by the Free Software Foundation.
12#
13# This program is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranties of
15# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
16# PURPOSE. See the GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License along
19# with this program. If not, see <http://www.gnu.org/licenses/>.
20
21"""Buy the annually extra storage service."""
22
1from sst.actions import *23from sst.actions import *
2from _actions import *24from _actions import *
3try:25try:

Subscribers

People subscribed via source and target branches