mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-12-20 06:55:40 +00:00
12 lines
277 B
Python
12 lines
277 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) == " // [text2]\n KEY_VALUE: 'test',"
|