Changes between Initial Version and Version 2 of Ticket #26795
- Timestamp:
- Jun 23, 2016, 2:14:33 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26795
- Property Easy pickings set
-
Ticket #26795 – Description
initial v2 3 3 {{{ 4 4 #!python 5 6 5 7 before = self.make_project_state([self.author_name]) 6 8 after = self.make_project_state([self.author_name_longer]) 7 9 autodetector = MigrationAutodetector(before, after) 8 10 changes = autodetector._detect_changes() 11 9 12 }}} 10 13 … … 12 15 {{{ 13 16 #!python 14 def get_changes(self, before_states, after_states): 15 before = self.make_project_state([self.author_name]) 16 after = self.make_project_state([self.author_name_longer]) 17 autodetector = MigrationAutodetector(before, after) 18 return autodetector._detect_changes() 17 18 19 def get_changes(self, before_states, after_states): 20 before = self.make_project_state([self.author_name]) 21 after = self.make_project_state([self.author_name_longer]) 22 autodetector = MigrationAutodetector(before, after) 23 return autodetector._detect_changes() 24 19 25 }}}