Code Monkey home page Code Monkey logo

django-admin-auto-tests's Introduction

django-admin-auto-tests

Simple and automated coverage for your Django Admin pages.

Create tests to check the correct functioning of your Admin pages. Includes support for:

  • Model List page is working.
  • Add page is working and saves a new record.
  • Modify page is working and saves a existing record.
  • Delete page is working and removes a existing record.
  • Add/Delete/Modify permissions.

Using it is as easy as:

class MyModelAdminTestCase(ModelAdminTestCase):
    model = MyModel

That is all! But you can personalize it:

class MyModelAdminTestCase(ModelAdminTestCase):
    # The response code to return. This is useful
    # for when you must return 403 (forbidden)
    add_status_code = 200
    changelist_status_code = 200
    change_status_code = 200
    delete_status_code = 200
    # Fields that should not be created/modified
    # when the form is submitted.
    form_data_exclude_fields = ()
    # Fixed value when submitting the form.
    form_data_update = {}
    # Skip default tests
    skip_add = False
    skip_create = False
    skip_change = False
    skip_delete = False

    model = MyModel

This module uses django-autofixture to create the information.

django-admin-auto-tests's People

Contributors

adamhaney avatar nekmo avatar reduxionist avatar

Watchers

 avatar  avatar

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.