~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_diff.py

rot13 the code snippet to help with clarity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
                 , 'AxyzBCn mo pqrstuvwI1 2  L'
225
225
                 , [(0,0,1), (1, 4, 2), (4, 7, 1), (9, 19, 1), (12, 23, 3)])
226
226
 
 
227
        # These are rot13 code snippets.
227
228
        chk_blocks('''\
228
 
    get added when you add a file in the directory.
229
 
    """
230
 
    takes_args = ['file*']
231
 
    takes_options = ['no-recurse']
232
 
    
233
 
    def run(self, file_list, no_recurse=False):
234
 
        from bzrlib.add import smart_add, add_reporter_print, add_reporter_null
235
 
        if is_quiet():
236
 
            reporter = add_reporter_null
237
 
        else:
238
 
            reporter = add_reporter_print
239
 
        smart_add(file_list, not no_recurse, reporter)
240
 
 
241
 
 
242
 
class cmd_mkdir(Command):
243
 
'''.splitlines(True)
244
 
, '''\
245
 
    get added when you add a file in the directory.
246
 
 
247
 
    --dry-run will show which files would be added, but not actually 
248
 
    add them.
249
 
    """
250
 
    takes_args = ['file*']
251
 
    takes_options = ['no-recurse', 'dry-run']
252
 
 
253
 
    def run(self, file_list, no_recurse=False, dry_run=False):
254
 
        import bzrlib.add
255
 
 
256
 
        if dry_run:
257
 
            if is_quiet():
258
 
                # This is pointless, but I'd rather not raise an error
259
 
                action = bzrlib.add.add_action_null
260
 
            else:
261
 
                action = bzrlib.add.add_action_print
262
 
        elif is_quiet():
263
 
            action = bzrlib.add.add_action_add
264
 
        else:
265
 
            action = bzrlib.add.add_action_add_and_print
266
 
 
267
 
        bzrlib.add.smart_add(file_list, not no_recurse, action)
268
 
 
269
 
 
270
 
class cmd_mkdir(Command):
 
229
    trg nqqrq jura lbh nqq n svyr va gur qverpgbel.
 
230
    """
 
231
    gnxrf_netf = ['svyr*']
 
232
    gnxrf_bcgvbaf = ['ab-erphefr']
 
233
  
 
234
    qrs eha(frys, svyr_yvfg, ab_erphefr=Snyfr):
 
235
        sebz omeyvo.nqq vzcbeg fzneg_nqq, nqq_ercbegre_cevag, nqq_ercbegre_ahyy
 
236
        vs vf_dhvrg():
 
237
            ercbegre = nqq_ercbegre_ahyy
 
238
        ryfr:
 
239
            ercbegre = nqq_ercbegre_cevag
 
240
        fzneg_nqq(svyr_yvfg, abg ab_erphefr, ercbegre)
 
241
 
 
242
 
 
243
pynff pzq_zxqve(Pbzznaq):
 
244
'''.splitlines(True), '''\
 
245
    trg nqqrq jura lbh nqq n svyr va gur qverpgbel.
 
246
 
 
247
    --qel-eha jvyy fubj juvpu svyrf jbhyq or nqqrq, ohg abg npghnyyl 
 
248
    nqq gurz.
 
249
    """
 
250
    gnxrf_netf = ['svyr*']
 
251
    gnxrf_bcgvbaf = ['ab-erphefr', 'qel-eha']
 
252
 
 
253
    qrs eha(frys, svyr_yvfg, ab_erphefr=Snyfr, qel_eha=Snyfr):
 
254
        vzcbeg omeyvo.nqq
 
255
 
 
256
        vs qel_eha:
 
257
            vs vf_dhvrg():
 
258
                # Guvf vf cbvagyrff, ohg V'q engure abg envfr na reebe
 
259
                npgvba = omeyvo.nqq.nqq_npgvba_ahyy
 
260
            ryfr:
 
261
  npgvba = omeyvo.nqq.nqq_npgvba_cevag
 
262
        ryvs vf_dhvrg():
 
263
            npgvba = omeyvo.nqq.nqq_npgvba_nqq
 
264
        ryfr:
 
265
       npgvba = omeyvo.nqq.nqq_npgvba_nqq_naq_cevag
 
266
 
 
267
        omeyvo.nqq.fzneg_nqq(svyr_yvfg, abg ab_erphefr, npgvba)
 
268
 
 
269
 
 
270
pynff pzq_zxqve(Pbzznaq):
271
271
'''.splitlines(True)
272
272
, [(0,0,1), (1, 4, 2), (9, 19, 1), (12, 23, 3)])
273
273