mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-10 14:14:17 +00:00
14 lines
308 B
Python
Executable file
14 lines
308 B
Python
Executable file
from __future__ import unicode_literals
|
|
from django.test import TestCase
|
|
|
|
class HeaderTest(TestCase):
|
|
|
|
def test_pokemon(self):
|
|
|
|
response = self.client.get(
|
|
'/api/v1/pokemon/1/',
|
|
HTTP_ORIGIN="http://pokemon.com"
|
|
)
|
|
|
|
self.assertEqual(response['Access-Control-Allow-Origin'], '*')
|
|
|