aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOscar Vilaplana2013-05-19 15:47:50 +0200
committerOscar Vilaplana2013-05-19 15:47:50 +0200
commit259153b3f96f51a613c0526ab947517a2a774857 (patch)
tree0cc29dd7957d726031716c0f27de070c60f99a09
parent9133ef77ab7940abbf69b688cd3b28c62665a8c7 (diff)
downloaddjango-rest-framework-259153b3f96f51a613c0526ab947517a2a774857.tar.bz2
removed TODO
-rw-r--r--rest_framework/tests/generics.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/rest_framework/tests/generics.py b/rest_framework/tests/generics.py
index 8285e2d1..e6b3797b 100644
--- a/rest_framework/tests/generics.py
+++ b/rest_framework/tests/generics.py
@@ -262,26 +262,17 @@ class TestInstanceView(TestCase):
'description': 'Example description for OPTIONS.',
'actions': {}
}
- # TODO: this is just a draft idea for fields' metadata - needs review and decision
for method in ('GET', 'DELETE'):
expected['actions'][method] = {}
for method in ('PATCH', 'PUT'):
expected['actions'][method] = {
'text': {
- # TODO uncomment label and description when they are
- # available
- #'description': '',
- #'label': None,
'max_length': 100,
'read_only': False,
'required': True,
'type': 'String',
},
'id': {
- # TODO uncomment label and description when they are
- # available
- #'description': '',
- #'label': None,
'read_only': True,
'required': False,
'type': 'Integer',