# -*- encoding: utf-8 -*- # # Copyright © 2013 eNovance # # Author: Julien Danjou # # 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. """Test API against MongoDB. """ from . import compute_duration_by_resource as cdbr from . import list_events from . import list_meters from . import list_projects from . import list_resources from . import list_sources from . import list_users from . import max_project_volume class TestListEvents(list_events.TestListEvents): database_connection = 'test://' class TestListEventsMetaQuery(list_events.TestListEventsMetaquery): database_connection = 'test://' class TestListEmptyMeters(list_meters.TestListEmptyMeters): database_connection = 'test://' class TestListMeters(list_meters.TestListMeters): database_connection = 'test://' class TestListMetersMetaquery(list_meters.TestListMetersMetaquery): database_connection = 'test://' class TestListEmptyUsers(list_users.TestListEmptyUsers): database_connection = 'test://' class TestListUsers(list_users.TestListUsers): database_connection = 'test://' class TestListEmptyProjects(list_projects.TestListEmptyProjects): database_connection = 'test://' class TestListProjects(list_projects.TestListProjects): database_connection = 'test://' class TestComputeDurationByResource(cdbr.TestComputeDurationByResource): database_connection = 'test://' class TestListEmptyResources(list_resources.TestListEmptyResources): database_connection = 'test://' class TestListResources(list_resources.TestListResources): database_connection = 'test://' class TestListResourcesMetaquery(list_resources.TestListResourcesMetaquery): database_connection = 'test://' class TestListSource(list_sources.TestListSource): database_connection = 'test://' class TestMaxProjectVolume(max_project_volume.TestMaxProjectVolume): database_connection = 'test://'