mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
16 lines
201 B
Python
16 lines
201 B
Python
from httprunner import __version__
|
|
|
|
|
|
def get_httprunner_version():
|
|
return __version__
|
|
|
|
|
|
def sum_two(m, n):
|
|
return m + n
|
|
|
|
|
|
def get_variables():
|
|
return {
|
|
"foo1": "session_bar1"
|
|
}
|