SurveyWorkflow   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 12
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A start() 0 10 1
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