spacepaste

  1.  
  2. def example_usage():
  3. import random # ADDED TO ENABLE TESTING
  4. import logging # ADDED TO ENABLE TESTING
  5. from optimizely import logger # ADDED TO ENABLE TESTING
  6. from docs_validation.helper_functions.helpers import get_datafile, LoggerInfo # ADDED TO ENABLE TESTING
  7. datafile = get_datafile() # ADDED TO ENABLE TESTING
  8. user_id = str(random.randrange(0, 10000000000001, 2)) # ADDED TO ENABLE TESTING
  9. # some code here, but no return
  10. # I need to have access to user_id in the test
  11.