Skip to content

Instantly share code, notes, and snippets.

@harshvb7
Created February 18, 2017 18:51
Show Gist options
  • Save harshvb7/fb06dc067d7048176a5fb671306233b7 to your computer and use it in GitHub Desktop.
Save harshvb7/fb06dc067d7048176a5fb671306233b7 to your computer and use it in GitHub Desktop.
import pytest
from example.models import Product
pytestmark = pytest.mark.django_db
class TestProductModel:
def test_save():
product = Product.objects.create(
name="Sample product",
price=500
)
assert product.name == Sample product
assert product.price == 500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment