~barry/ubuntu-system-image/lp1373467

« back to all changes in this revision

Viewing changes to systemimage/tests/test_helpers.py

  • Committer: Barry Warsaw
  • Date: 2015-01-15 21:13:04 UTC
  • Revision ID: barry@python.org-20150115211304-ciaedn70yjtj314k
More clean up and renames.

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
 
212
212
    @configuration
213
213
    def test_version_detail(self, config):
214
 
        shutil.copy(data_path('helpers_01.ini'),
 
214
        shutil.copy(data_path('helpers.config_01.ini'),
215
215
                    os.path.join(config.config_d, '00_config.ini'))
216
216
        config.reload()
217
217
        self.assertEqual(version_detail(),
219
219
 
220
220
    @configuration
221
221
    def test_no_version_detail(self, config):
222
 
        shutil.copy(data_path('helpers_02.ini'),
 
222
        shutil.copy(data_path('helpers.config_02.ini'),
223
223
                    os.path.join(config.config_d, '00_config.ini'))
224
224
        config.reload()
225
225
        self.assertEqual(version_detail(), {})