mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-24 15:46:44 +08:00
15 lines
376 B
Python
15 lines
376 B
Python
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
"""Billing migration testing."""
|
|
|
|
from weblate.trans.models import Project
|
|
|
|
project = Project.objects.get(pk=1)
|
|
|
|
# Verify that two users were correctly migrated
|
|
assert set(project.billing.owners.values_list("username", flat=True)) == {
|
|
"billingtest1",
|
|
"billingtest2",
|
|
}
|