~click-hackers/click/xenial

« back to all changes in this revision

Viewing changes to click_package/tests/test_framework.py

  • Committer: Bileto Bot
  • Date: 2017-06-13 17:14:22 UTC
  • mfrom: (606.1.2 xenial)
  • Revision ID: ci-train-bot@canonical.com-20170613171422-0mf13oxdgjxipklh
Rename the python package this installs from click to click_package.
(LP: #1693226)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
15
 
16
 
"""Unit tests for click.framework."""
 
16
"""Unit tests for click_package.framework."""
17
17
 
18
18
from __future__ import print_function
19
19
 
27
27
 
28
28
from gi.repository import Click
29
29
 
30
 
from click.tests.helpers import TestCase, touch
 
30
from click_package.tests.helpers import TestCase, touch
31
31
 
32
32
 
33
33
class TestClickFramework(TestCase):