Method: Vanity::Experiment::AbTest#outcome

Defined in:
lib/vanity/experiment/ab_test.rb

#outcomeObject

Alternative chosen when this experiment completed.



469
470
471
472
473
474
# File 'lib/vanity/experiment/ab_test.rb', line 469

def outcome
  return unless @playground.collecting?

  outcome = connection.ab_get_outcome(@id)
  outcome && alternatives[outcome]
end