Skip to content

Instantly share code, notes, and snippets.

@bgarcial
Last active August 29, 2015 13:57
Show Gist options
  • Save bgarcial/9734691 to your computer and use it in GitHub Desktop.
Save bgarcial/9734691 to your computer and use it in GitHub Desktop.
from django.test import TestCase
from .models import Categoria,Enlace
from django.contrib.auth.models import User
# Create your tests here.
class SimpleTest(TestCase):
def test_es_popular(self):
categoria = Categoria.objects.create(titulo='Categoria de prueba')
usuario = User.objects.create_user(username='bern', password='*****')
Enlace.objects.create(titulo='Prueba',enlace='http://ieee-wie.co', votos=0,
categoria=categoria, usuario=usuario)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment