diff options
| author | rsiddharth <s@ricketyspace.net> | 2018-01-02 00:29:15 +0000 | 
|---|---|---|
| committer | rsiddharth <s@ricketyspace.net> | 2018-01-02 00:29:15 +0000 | 
| commit | 6bc1aeb370ab33bbfa2dbece6d85fc22c198fdcd (patch) | |
| tree | b5c209207d6c1270473a1165a6a51558afce2610 | |
| parent | 1c94dfabe07400c5b6991f2f4a3a46340a9cc3bd (diff) | |
md_tw: Update `TWBlockLexer.__init__`.
* md_tw.py
(__init__): Remove default_rules.
* tests/test_md_tw.py
(test_default_rules_contents): Remove method.
| -rw-r--r-- | md_tw.py | 1 | ||||
| -rw-r--r-- | tests/test_md_tw.py | 2 | 
2 files changed, 0 insertions, 3 deletions
| @@ -29,7 +29,6 @@ class TWBlockLexer(mistune.BlockLexer):      def __init__(self, rules=None, **kwargs):          super(TWBlockLexer, self).__init__(rules, **kwargs) -        self.default_rules = ['paragraph', 'text']  class TWInlineLexer(mistune.InlineLexer): diff --git a/tests/test_md_tw.py b/tests/test_md_tw.py index d8a7f92..c06a267 100644 --- a/tests/test_md_tw.py +++ b/tests/test_md_tw.py @@ -41,8 +41,6 @@ class TestTWBlockLexer(object):          self.bl = TWBlockLexer() -    def test_default_rules_contents(self): -        assert_equal(self.bl.default_rules, ['paragraph', 'text'])      def teardown(self): | 
