SurveyWorkflow.start()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
dl 0
loc 10
rs 9.4285
c 1
b 0
f 0
1
# frozen_string_literal: true
2
3
# Workflow for user to take survey
4
class SurveyWorkflow
5
  def start
6
    # Start Survey
7
    
8
    # Get user, visit create
9
    # Start Assessment
10
    # Get Instrument
11
    # Get Items
12
    # Go to First Item 
13
    # Speak First Item
14
  end
15
end
16