mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-25 11:03:58 +03:00
Renamed from MountedType.mount to MuntedType.mounted
This commit is contained in:
parent
dda3237e0a
commit
573101fc90
|
@ -47,7 +47,7 @@ def to_arguments(args, extra_args=None):
|
|||
continue
|
||||
|
||||
if isinstance(arg, UnmountedType):
|
||||
arg = Argument.mount(arg)
|
||||
arg = Argument.mounted(arg)
|
||||
|
||||
if isinstance(arg, (InputField, Field)):
|
||||
raise ValueError('Expected {} to be Argument, but received {}. Try using Argument({}).'.format(
|
||||
|
|
|
@ -5,7 +5,7 @@ from .unmountedtype import UnmountedType
|
|||
class MountedType(OrderedType):
|
||||
|
||||
@classmethod
|
||||
def mount(cls, unmounted): # noqa: N802
|
||||
def mounted(cls, unmounted): # noqa: N802
|
||||
'''
|
||||
Mount the UnmountedType instance
|
||||
'''
|
||||
|
|
|
@ -13,14 +13,14 @@ class CustomField(Field):
|
|||
|
||||
def test_mounted_type():
|
||||
unmounted = String()
|
||||
mounted = Field.mount(unmounted)
|
||||
mounted = Field.mounted(unmounted)
|
||||
assert isinstance(mounted, Field)
|
||||
assert mounted.type == String
|
||||
|
||||
|
||||
def test_mounted_type_custom():
|
||||
unmounted = String(metadata={'hey': 'yo!'})
|
||||
mounted = CustomField.mount(unmounted)
|
||||
mounted = CustomField.mounted(unmounted)
|
||||
assert isinstance(mounted, CustomField)
|
||||
assert mounted.type == String
|
||||
assert mounted.metadata == {'hey': 'yo!'}
|
||||
|
|
|
@ -28,7 +28,7 @@ class UnmountedType(OrderedType):
|
|||
raise NotImplementedError("get_type not implemented in {}".format(self))
|
||||
|
||||
def mount_as(self, _as):
|
||||
return _as.mount(self)
|
||||
return _as.mounted(self)
|
||||
|
||||
def Field(self): # noqa: N802
|
||||
'''
|
||||
|
|
|
@ -42,7 +42,7 @@ def get_field_as(value, _as=None):
|
|||
elif isinstance(value, UnmountedType):
|
||||
if _as is None:
|
||||
return value
|
||||
return _as.mount(value)
|
||||
return _as.mounted(value)
|
||||
|
||||
|
||||
def yank_fields_from_attrs(attrs, _as=None, delete=True, sort=True):
|
||||
|
|
Loading…
Reference in New Issue
Block a user