Coder Social home page Coder Social logo

Comments (3)

markotibold avatar markotibold commented on May 22, 2024

Got this approach working on code for a work-project.

Just going to paste some stuff here as a remeninder.

use the following code when you don't want to do manage.py test appname:

from django.test.utils import setup_test_environment
setup_test_environment()

from django.db import connection
connection.creation.create_test_db()

and in the test:

class MyTest(TestCase):

  fixtures = ['test_fixtures'] # store this file inside the mockapp

  def setUp...

  def tearDown....

  *tests with db magic goes here*....

And all we need now is a very basic settings module with a sqlite3 db.

That's about it.

from django-rest-framework.

markotibold avatar markotibold commented on May 22, 2024

It looks like this issue is actually already solved in a couple of tests, eg:

https://github.com/ekohl/django-rest-framework/blob/pep8/djangorestframework/tests/modelviews.py
https://github.com/ekohl/django-rest-framework/blob/pep8/djangorestframework/tests/serializer.py

@tomchristie or do you beleaeve there's more work needed done on this issue?

from django-rest-framework.

tomchristie avatar tomchristie commented on May 22, 2024

Ah yeah. Looks done. djangorestframework/tests/models.py exists, and does what this ticket was originally requesting. Thanks!

from django-rest-framework.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.