Add test for FilePathField

This commit is contained in:
Patrick Arminio 2017-06-26 14:23:45 +01:00
parent 772e2d114a
commit 47c5dfcab7

View File

@ -128,3 +128,7 @@ def test_should_duration_convert_string():
def test_should_file_convert_string():
assert_conversion(serializers.FileField, graphene.String)
def test_should_filepath_convert_string():
assert_conversion(serializers.FilePathField, graphene.String)