Skip to content
Snippets Groups Projects
Commit f3fd6d0e authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: Don't hard code line numbers

parent 3bf3e154
No related branches found
No related tags found
No related merge requests found
...@@ -7,12 +7,22 @@ import pytest ...@@ -7,12 +7,22 @@ import pytest
import fsl.utils.deprecated as deprecated import fsl.utils.deprecated as deprecated
# the line number of the warning is hard coded in # these get updated in the relevant functions
# the unit tests below. Don't change the line number! WARNING_LINE_NUMBER = None
DEPRECATED_LINE_NUMBER = None
def _linenum(pattern):
with open(__file__, 'rt') as f:
for i, line in enumerate(f.readlines(), 1):
if pattern in line:
return i
return -1
def emit_warning(): def emit_warning():
deprecated.warn('blag', vin='1.0.0', rin='2.0.0', msg='yo') deprecated.warn('blag', vin='1.0.0', rin='2.0.0', msg='yo')
global WARNING_LINE_NUMBER
WARNING_LINE_NUMBER = 13 WARNING_LINE_NUMBER = _linenum('deprecated.warn(\'blag\'')
@deprecated.deprecated(vin='1.0.0', rin='2.0.0', msg='yo') @deprecated.deprecated(vin='1.0.0', rin='2.0.0', msg='yo')
...@@ -20,9 +30,9 @@ def depfunc(): ...@@ -20,9 +30,9 @@ def depfunc():
pass pass
def call_dep_func(): def call_dep_func():
depfunc() depfunc() # mark
global DEPRECATED_LINE_NUMBER
DEPRECATED_LINE_NUMBER = 23 DEPRECATED_LINE_NUMBER = _linenum('depfunc() # mark')
def _check_warning(w, name, lineno): def _check_warning(w, name, lineno):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment