comment_tests.json 749 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [
  2. {
  3. "model" : "comment_tests.author",
  4. "pk" : 1,
  5. "fields" : {
  6. "first_name" : "John",
  7. "last_name" : "Smith"
  8. }
  9. },
  10. {
  11. "model" : "comment_tests.author",
  12. "pk" : 2,
  13. "fields" : {
  14. "first_name" : "Peter",
  15. "last_name" : "Jones"
  16. }
  17. },
  18. {
  19. "model" : "comment_tests.article",
  20. "pk" : 1,
  21. "fields" : {
  22. "author" : 1,
  23. "headline" : "Man Bites Dog"
  24. }
  25. },
  26. {
  27. "model" : "comment_tests.article",
  28. "pk" : 2,
  29. "fields" : {
  30. "author" : 2,
  31. "headline" : "Dog Bites Man"
  32. }
  33. },
  34. {
  35. "model" : "auth.user",
  36. "pk" : 100,
  37. "fields" : {
  38. "username" : "normaluser",
  39. "password" : "34ea4aaaf24efcbb4b30d27302f8657f"
  40. }
  41. }
  42. ]