Skip to content

Commit

Permalink
Remove commented code.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 9, 2022
1 parent e489536 commit 5c5f664
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions cssutils/tests/test_tokenize2.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,27 +515,6 @@ def setup(self):
# log = cssutils.errorhandler.ErrorHandler()
self.tokenizer = Tokenizer()

# NOT USED
# def test_push(self):
# "Tokenizer.push()"
# r = []
# def do():
# T = Tokenizer()
# x = False
# for t in T.tokenize('1 x 2 3'):
# if not x and t[1] == 'x':
# T.push(t)
# x = True
# r.append(t[1])
# return ''.join(r)
#
# # push reinserts token into token stream, so x is doubled
# self.assertEqual('1 xx 2 3', do())

# def test_linenumbers(self):
# "Tokenizer line + col"
# pass

def test_tokenize(self):
"cssutils Tokenizer().tokenize()"
import cssutils.cssproductions
Expand Down

0 comments on commit 5c5f664

Please sign in to comment.