module Cucumber::Rails

Public Class Methods

include_rack_test_helpers?() click to toggle source
# File lib/cucumber/rails/world.rb, line 13
def include_rack_test_helpers?
  # Using ActiveModel Boolean casting here will give false positives more often than not!
  !ENV.fetch('CR_REMOVE_RACK_TEST_HELPERS', '').casecmp('true').zero?
end