Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#15770 closed New feature (duplicate)

Models only for testing purpose?

Reported by: italo.maia@… Owned by: nobody
Component: Testing framework Version: 1.3
Severity: Normal Keywords: test models
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I was creating a django app and, when writing tests, I noticed there could be a better way to create models that should exist only in testing environment. That would make creating tests much easier.

One way to do it would be syncdb ignoring certain models marked for testing only. Example:

class MyModel(models.Model):
  ...
  class Meta:
    test_env = True  # or something else

Change History (2)

comment:1 by Mark Lavin, 13 years ago

Resolution: duplicate
Status: newclosed

This is a duplicate of #7835 which has a nice work-around for this issue in the comments.

comment:2 by Jacob, 13 years ago

milestone: 1.4

Milestone 1.4 deleted

Note: See TracTickets for help on using tickets.
Back to Top