We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a91d0a3 commit 2e379deCopy full SHA for 2e379de
studygroups/tests/test_device_allocation.py
@@ -45,6 +45,8 @@ def setUp(self):
45
46
47
def test_create_study_group_with_limit(self):
48
+ self.assertEquals(1, DeviceAllocation.objects.count())
49
+ DeviceAllocation.objects.all().delete()
50
c = Client()
51
c.login(username='bob@example.net', password='password')
52
data = {
@@ -119,6 +121,9 @@ def test_create_study_group_with_limit(self):
119
121
120
122
123
def test_update_learning_circle(self):
124
125
126
+
127
self.facilitator.profile.email_confirmed_at = timezone.now()
128
self.facilitator.profile.save()
129
0 commit comments