Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial routing api support #474

Draft
wants to merge 20 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test test?
  • Loading branch information
jtanner-testbox committed Mar 26, 2021
commit 9db65e7dcec8762c43d0c6ae5fe10f56842b9eb0
12 changes: 12 additions & 0 deletions tests/test_api/test_routing_api.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from zenpy.lib.api_objects import RoutingAttribute
from test_api.fixtures import SingleCreateApiTestCase
from zenpy.lib.exception import ZenpyException

# https://developer.zendesk.com/rest_api/docs/support/skill_based_routing

class TestRoutingApi(SingleCreateApiTestCase):
__test__ = True
ZenpyType = RoutingAttribute
object_kwargs = dict(name='test_attribute')
api_name = 'routing.attributes'