Skip to content

Commit 5d5b6f7

Browse files
committed
Rename swagger_client in tests
1 parent c841830 commit 5d5b6f7

24 files changed

+96
-96
lines changed

test/test_contact.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.contact import Contact
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.contact import Contact
2323

2424

2525
class TestContact(unittest.TestCase):
@@ -36,7 +36,7 @@ def testContact(self):
3636
Test Contact
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.contact.Contact()
39+
#model = clever.models.contact.Contact()
4040
pass
4141

4242

test/test_contact_object.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.contact_object import ContactObject
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.contact_object import ContactObject
2323

2424

2525
class TestContactObject(unittest.TestCase):
@@ -36,7 +36,7 @@ def testContactObject(self):
3636
Test ContactObject
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.contact_object.ContactObject()
39+
#model = clever.models.contact_object.ContactObject()
4040
pass
4141

4242

test/test_contact_response.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.contact_response import ContactResponse
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.contact_response import ContactResponse
2323

2424

2525
class TestContactResponse(unittest.TestCase):
@@ -36,7 +36,7 @@ def testContactResponse(self):
3636
Test ContactResponse
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.contact_response.ContactResponse()
39+
#model = clever.models.contact_response.ContactResponse()
4040
pass
4141

4242

test/test_contacts_created.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.contacts_created import ContactsCreated
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.contacts_created import ContactsCreated
2323

2424

2525
class TestContactsCreated(unittest.TestCase):
@@ -36,7 +36,7 @@ def testContactsCreated(self):
3636
Test ContactsCreated
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.contacts_created.ContactsCreated()
39+
#model = clever.models.contacts_created.ContactsCreated()
4040
pass
4141

4242

test/test_contacts_deleted.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.contacts_deleted import ContactsDeleted
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.contacts_deleted import ContactsDeleted
2323

2424

2525
class TestContactsDeleted(unittest.TestCase):
@@ -36,7 +36,7 @@ def testContactsDeleted(self):
3636
Test ContactsDeleted
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.contacts_deleted.ContactsDeleted()
39+
#model = clever.models.contacts_deleted.ContactsDeleted()
4040
pass
4141

4242

test/test_contacts_response.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.contacts_response import ContactsResponse
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.contacts_response import ContactsResponse
2323

2424

2525
class TestContactsResponse(unittest.TestCase):
@@ -36,7 +36,7 @@ def testContactsResponse(self):
3636
Test ContactsResponse
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.contacts_response.ContactsResponse()
39+
#model = clever.models.contacts_response.ContactsResponse()
4040
pass
4141

4242

test/test_contacts_updated.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.contacts_updated import ContactsUpdated
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.contacts_updated import ContactsUpdated
2323

2424

2525
class TestContactsUpdated(unittest.TestCase):
@@ -36,7 +36,7 @@ def testContactsUpdated(self):
3636
Test ContactsUpdated
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.contacts_updated.ContactsUpdated()
39+
#model = clever.models.contacts_updated.ContactsUpdated()
4040
pass
4141

4242

test/test_course.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.course import Course
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.course import Course
2323

2424

2525
class TestCourse(unittest.TestCase):
@@ -36,7 +36,7 @@ def testCourse(self):
3636
Test Course
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.course.Course()
39+
#model = clever.models.course.Course()
4040
pass
4141

4242

test/test_course_object.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.course_object import CourseObject
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.course_object import CourseObject
2323

2424

2525
class TestCourseObject(unittest.TestCase):
@@ -36,7 +36,7 @@ def testCourseObject(self):
3636
Test CourseObject
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.course_object.CourseObject()
39+
#model = clever.models.course_object.CourseObject()
4040
pass
4141

4242

test/test_course_response.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import sys
1818
import unittest
1919

20-
import swagger_client
21-
from swagger_client.rest import ApiException
22-
from swagger_client.models.course_response import CourseResponse
20+
import clever
21+
from clever.rest import ApiException
22+
from clever.models.course_response import CourseResponse
2323

2424

2525
class TestCourseResponse(unittest.TestCase):
@@ -36,7 +36,7 @@ def testCourseResponse(self):
3636
Test CourseResponse
3737
"""
3838
# FIXME: construct object with mandatory attributes with example values
39-
#model = swagger_client.models.course_response.CourseResponse()
39+
#model = clever.models.course_response.CourseResponse()
4040
pass
4141

4242

0 commit comments

Comments
 (0)