change help strings

This commit is contained in:
Gregory Martin
2017-01-10 13:25:28 -05:00
parent 28e3b1cb5a
commit e1e47793df
17 changed files with 58 additions and 26 deletions

View File

@@ -37,8 +37,12 @@ class TestFields(object):
# Will not be returned by editable_metadata_fields because is not Scope.settings.
student_answers = Dict(scope=Scope.user_state)
# Will be returned, and can override the inherited value from XModule.
display_name = String(scope=Scope.settings, default='local default', display_name='Local Display Name',
help='local help')
display_name = String(
scope=Scope.settings,
default='local default',
display_name='Local Display Name',
help='local help'
)
# Used for testing select type, effect of to_json method
string_select = CrazyJsonString(
scope=Scope.settings,