From 3fbfd0b2d715becc8f345bae42981e5130c3c5c3 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Thu, 4 Jul 2013 13:46:28 -0400 Subject: [PATCH] Remove broken and useless tests. Update LICENSE - Added myself to the LICENSE --- LICENSE | 3 +- flake8/tests/test_flakes.py | 94 ------------------------------------- 2 files changed, 2 insertions(+), 95 deletions(-) delete mode 100644 flake8/tests/test_flakes.py diff --git a/LICENSE b/LICENSE index c8c1f45..32b274a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,7 @@ == Flake8 License (MIT) == -Copyright (C) 2011 Tarek Ziade +Copyright (C) 2011-2013 Tarek Ziade +Copyright (C) 2012-2013 Ian Cordasco Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/flake8/tests/test_flakes.py b/flake8/tests/test_flakes.py deleted file mode 100644 index 79ac253..0000000 --- a/flake8/tests/test_flakes.py +++ /dev/null @@ -1,94 +0,0 @@ -# -*- coding: utf-8 -*- -import sys - -from unittest import TestCase -from pyflakes.api import check - - -class FlakesTestReporter(object): - def __init__(self): - self.messages = [] - self.flakes = self.messages.append - - def unexpectedError(self, filename, msg): - self.flakes('[unexpectedError] %s: %s' % (filename, msg)) - - def syntaxError(self, filename, msg, lineno, offset, text): - self.flakes('[syntaxError] %s:%d: %s' % (filename, lineno, msg)) - - -code0 = """ -try: - pass -except ValueError, err: - print(err) -""" - -code1 = """ -try: - pass -except ValueError as err: - print(err) -""" - -code2 = """ -try: - pass -except ValueError: - print("err") - -try: - pass -except ValueError: - print("err") -""" - -code3 = """ -try: - pass -except (ImportError, ValueError): - print("err") -""" - -code_from_import_exception = """ -from foo import SomeException -try: - pass -except SomeException: - print("err") -""" - -code_import_exception = """ -import foo.SomeException -try: - pass -except foo.SomeException: - print("err") -""" - - -class TestFlake(TestCase): - - def test_exception(self): - codes = [code1, code2, code3] - if sys.version_info < (2, 6): - codes[0] = code0 - elif sys.version_info < (3,): - codes.insert(0, code0) - for code in codes: - reporter = FlakesTestReporter() - warnings = check(code, '(stdin)', reporter) - self.assertFalse(reporter.messages) - self.assertEqual(warnings, 0) - - def test_from_import_exception_in_scope(self): - reporter = FlakesTestReporter() - warnings = check(code_from_import_exception, '(stdin)', reporter) - self.assertFalse(reporter.messages) - self.assertEqual(warnings, 0) - - def test_import_exception_in_scope(self): - reporter = FlakesTestReporter() - warnings = check(code_import_exception, '(stdin)', reporter) - self.assertFalse(reporter.messages) - self.assertEqual(warnings, 0)