-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_recruit.py
40 lines (26 loc) · 1018 Bytes
/
test_recruit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# coding: utf-8
"""
College Football Data API
This is an API for accessing all sorts of college football data. Please note that API keys should be supplied with \"Bearer \" prepended (e.g. \"Bearer your_key\"). API keys can be acquired from the CollegeFootballData.com website. # noqa: E501
OpenAPI spec version: 4.5.2
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import cfbd
from cfbd.models.recruit import Recruit # noqa: E501
from cfbd.rest import ApiException
class TestRecruit(unittest.TestCase):
"""Recruit unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testRecruit(self):
"""Test Recruit"""
# FIXME: construct object with mandatory attributes with example values
# model = cfbd.models.recruit.Recruit() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()