aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--budget/tests.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/budget/tests.py b/budget/tests.py
index db37e46..96ed042 100644
--- a/budget/tests.py
+++ b/budget/tests.py
@@ -186,6 +186,15 @@ class BudgetTestCase(TestCase):
self.assertEqual(
len(models.Project.query.get("raclette").active_members), 2)
+ # adding an user with the same name as another user from a different
+ # project should not cause any troubles
+ self.post_project("randomid")
+ self.login("randomid")
+ self.app.post("/randomid/members/add", data={'name': 'fred' })
+ self.assertEqual(
+ len(models.Project.query.get("randomid").active_members), 1)
+
+
def test_demo(self):
# Test that it is possible to connect automatically by going onto /demo
with run.app.test_client() as c: