Changes between Initial Version and Version 1 of Ticket #27416, comment 5


Ignore:
Timestamp:
Nov 11, 2016, 2:56:37 AM (7 years ago)
Author:
Hiroki Kiyohara

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27416, comment 5

    initial v1  
    1 Thank you. I want to check not to exist the "empty data", so the test has `self.assertEqual(Author.objects.count(), 2)`.
    2 Without chanes of the code, It will be `3`, (`author`, `other_author`, and unexpected empty data). The `other_author.name` won't be `"Changed name"` even we don't chande codes.
     1Thank you. I want to check that the "empty data" won't be created and `other_author.name` won't be `"Changed name"`.
     2Without changes of the code, The number of models will be `3`, (`author`, `other_author`, and unexpected empty data).
     3The `other_author.name` won't be `"Changed name"` even we don't change codes.
    34
    45I'll check something I said is correct again later.
    56If you feel the test or changes is hard to understand, I'll improve so please give me any advices.
     7
     8*edited*
     9I improved tests to be more readable and fixed this response to be correct.
Back to Top