Commit e9c8bb7437bc7452d09879d86b4b8c7b80585391

Authored by Andrew Buss
1 parent cf232414a1
Exists in master

added technical contacts; fix first user fixture

Showing 2 changed files with 11 additions and 0 deletions Side-by-side Diff

... ... @@ -88,4 +88,9 @@
88 88 As on Linux, Redis must be installed and running on port 6379.
89 89  
90 90 Wherever venv/bin/ appears, use venv/Scripts instead. Virtualenv inexplicably creates a Scripts directory rather than bin on Windows
  91 +
  92 +# Technical Contacts
  93 +
  94 +Andrew Buss - phone number on csesoftwaretools
  95 +Rohan Rangray - phone number on csesoftwaretools
flashcards/test_fixtures/userx_in_test101.py View file @ e9c8bb7
  1 +from flashcards.models import *
  2 +
  3 +
  4 +def apply():
  5 + u = User.objects.get(email='userx@flashy.cards')
  6 + Section.objects.get(department_abbreviation='TEST', course_num='101').enroll(u)