Sha256: 18d946111c958a512bb5a68071dc14d34f69cc717699a982594809907d37afa1
Contents?: true
Size: 638 Bytes
Versions: 2
Compression:
Stored size: 638 Bytes
Contents
require "test/test_helper" class RailsHelperTest < ActionView::TestCase include Vanity::Rails::Helpers def setup super metric :sugar_high new_ab_test :pie_or_cake do metrics :sugar_high identify { '1' } alternatives :pie, :cake end end def test_ab_test_returns_one_of_the_alternatives assert [:pie, :cake].include?(ab_test(:pie_or_cake)) end def test_ab_test_using_js_returns_the_same_alternative Vanity.playground.use_js! result = ab_test(:pie_or_cake) assert [:pie, :cake].include?(result) 10.times do assert result == ab_test(:pie_or_cake) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vanity-1.6.1 | test/rails_helper_test.rb |
vanity-1.6.0 | test/rails_helper_test.rb |