Skip to content

Instantly share code, notes, and snippets.

@flavianmissi
Created May 1, 2012 13:55
Show Gist options
  • Select an option

  • Save flavianmissi/2568074 to your computer and use it in GitHub Desktop.

Select an option

Save flavianmissi/2568074 to your computer and use it in GitHub Desktop.
Django's assertQuerysetEqual sample
user = User.objects.create(email="[email protected]")
qs = User.objects.all()
self.assertQuerysetEqual(qs, [repr(user)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment