10 lines
143 B
Python
10 lines
143 B
Python
from grum import assets
|
|
|
|
|
|
def test_get_asset():
|
|
ret = assets.get_asset("testname")
|
|
assert ret.endswith("grum/grum/assets/testname")
|
|
|
|
|
|
|