class Moodle2CC::Moodle2Converter::QuestionConverters::NumericalConverter

Public Instance Methods

convert_question(moodle_question) click to toggle source
Calls superclass method
# File lib/moodle2cc/moodle2converter/question_converters/numerical_converter.rb, line 7
def convert_question(moodle_question)
  canvas_question = super
  canvas_question.tolerances = moodle_question.tolerances
  canvas_question
end