Remove dead fixture test

This commit is contained in:
Joshua Peek
2012-06-19 16:34:13 -05:00
parent 4484011f08
commit 645a87d02b

View File

@@ -44,7 +44,6 @@ class TestTokenizer < Test::Unit::TestCase
def test_c_tokens
assert_equal %w(#include <stdio.h> int main \( \) { printf \( \) ; return 0 ; }), tokenize(:"c/hello.c")
assert_equal %w(#ifndef HELLO_H #define HELLO_H void hello \( \) ; #endif), tokenize(:"c/hello.h")
end
def test_cpp_tokens