helper.lua 167 B

12345678910
  1. -- Test helper module
  2. -- This module contains functions to be shared with among tests
  3. local helper = {}
  4. function helper.example()
  5. -- do something
  6. end
  7. return helper