Skip to content

Commit

Permalink
Removed dummy test.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricobl committed Nov 19, 2010
1 parent bb6f876 commit 64cb984
Showing 1 changed file with 0 additions and 38 deletions.
38 changes: 0 additions & 38 deletions tests/test_parser.py
Expand Up @@ -52,41 +52,3 @@ def test_parser_doesnt_fix_escaped_double_quotes_inside_single_quotes():
def test_parser_splits_multiple_string_args_on_commas():
yield assert_stack_equals, "'yo','hey'", ["'yo'", "'hey'"]

def test_sample_arguments():
kwargs = [
'kw=',
]
values = [
'var',
'"dbl-quotes"',
"'single-quotes'",
]
filters = [
'|simple',
]

for v in values:
filters.append('|witharg:' + v)

samples = []

for v in values:
samples.append(v)

for v in values:
samples.append(kwargs[0] + v)

for v in values:
for f in filters:
samples.append(v + f)
samples.append(kwargs[0] + v + f)

for v in values:
for f1 in filters:
for f2 in filters:
samples.append(v + f1 + f2)
samples.append(kwargs[0] + v + f1 + f2)

for t in samples:
yield assert_stack_equals, t, [t]

0 comments on commit 64cb984

Please sign in to comment.