Nikita Konovalov 2090a8beff Setting up base classes
Base classes added for HTTPClient and Managers.

Users and UserPreferences implementation.

Change-Id: Ia2beb899b752a5db22a5dc12ff55852a7764ac36
2014-12-22 16:36:08 +03:00

40 lines
1.3 KiB
Python

# Copyright (c) 2014 Mirantis Inc.
#
# 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 mock
from storyboardclient import base
from storyboardclient.tests import base as test_base
class BaseManagerTestCase(test_base.TestCase):
@mock.patch("storyboardclient.base.BaseManager._get")
def test_get(self, mock_private_get):
manager = base.BaseManager(mock.MagicMock())
manager.url_key = "key"
manager.get("id1")
mock_private_get.assert_called_once_with("/key/id1", None)
@mock.patch("storyboardclient.base.BaseManager._post")
def test_create(self, mock_private_post):
manager = base.BaseManager(mock.MagicMock())
manager.url_key = "key"
manager.create(title="test_story")
mock_private_post.assert_called_once_with("/key",
{"title": "test_story"})