~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_script.py

  • Committer: Vincent Ladeuil
  • Date: 2010-11-08 09:58:04 UTC
  • mto: (5532.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 5532.
  • Revision ID: v.ladeuil+lp@free.fr-20101108095804-uk34qhoyr7tfw4ay
s/blank_output/null_output/

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
            $ echo foo
187
187
            """)
188
188
 
189
 
    def test_blank_output_matches_option(self):
190
 
        """If you want blank output to be a wild card, you can pass 
191
 
        blank_output_matches_anything to run_script"""
 
189
    def test_null_output_matches_option(self):
 
190
        """If you want null output to be a wild card, you can pass 
 
191
        null_output_matches_anything to run_script"""
192
192
        self.run_script(
193
193
            """
194
194
            $ echo foo
195
 
            """, blank_output_matches_anything=True)
 
195
            """, null_output_matches_anything=True)
196
196
 
197
197
    def test_ellipsis_everything(self):
198
198
        """A simple ellipsis matches everything."""