mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2026-05-04 00:11:22 +00:00
12 lines
274 B
Python
12 lines
274 B
Python
from constants.lang import ENGLISH
|
|
from models.client_string import ClientString
|
|
|
|
|
|
def test_copy_client_string():
|
|
ccs = ClientString("KEY_VALUE", ["text2"])
|
|
|
|
def get(x):
|
|
return "test"
|
|
|
|
assert ccs.string(get, ENGLISH) == " KEY_VALUE: 'test',"
|