summaryrefslogtreecommitdiff
path: root/tests/test_asm.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_asm.py')
-rw-r--r--tests/test_asm.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/test_asm.py b/tests/test_asm.py
deleted file mode 100644
index 30a008a1..00000000
--- a/tests/test_asm.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# -*- coding: utf-8 -*-
-"""
- Basic ColdfusionHtmlLexer Test
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
- :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
- :license: BSD, see LICENSE for details.
-"""
-
-import unittest
-import os
-
-from pygments.token import Token
-from pygments.lexers import NasmLexer
-
-
-class NasmLexerTest(unittest.TestCase):
-
- def setUp(self):
- self.lexer = NasmLexer()
-
- def testCPUID(self):
- # CPU is a valid directive, and we don't want to parse this as
- # cpu id, but as a single token. See bug #1517
- fragment = 'cpuid'
- expected = [
- (Token.Name.Function, u'cpuid'),
- (Token.Text, u'\n'),
- ]
- self.assertEqual(expected, list(self.lexer.get_tokens(fragment)))