Modified test_spec_link of test_tidy for packaged tidy

This commit is contained in:
askeing 2016-04-17 04:20:24 +09:00
parent 22d991d4e0
commit 27bac667b2
2 changed files with 4 additions and 81 deletions

View file

@ -11,10 +11,11 @@ import os
import unittest
from servo_tidy import tidy
base_path = 'servo_tidy_tests/' if os.path.exists('servo_tidy_tests/') else 'python/tidy/servo_tidy_tests/'
def iterFile(name):
path = 'servo_tidy_tests/' if os.path.exists('servo_tidy_tests/') else 'python/tidy/servo_tidy_tests/'
return iter([os.path.join(path, name)])
return iter([os.path.join(base_path, name)])
class CheckTidiness(unittest.TestCase):
@ -62,7 +63,7 @@ class CheckTidiness(unittest.TestCase):
self.assertEqual('use &str instead of &String', errors.next()[2])
def test_spec_link(self):
tidy.spec_base_path = "python/tidy_self_test/"
tidy.spec_base_path = base_path
errors = tidy.collect_errors_for_files(iterFile('speclink.rs'), [], [tidy.check_spec])
self.assertEqual('method declared in webidl is missing a comment with a specification link', errors.next()[2])