mirror of
https://github.com/servo/servo.git
synced 2025-06-08 00:23:30 +00:00
Modified test_spec_link of test_tidy for packaged tidy
This commit is contained in:
parent
22d991d4e0
commit
27bac667b2
2 changed files with 4 additions and 81 deletions
|
@ -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])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue