tests for AngularViewArray service
This commit is contained in:
parent
b44665e75d
commit
659417f7ef
7 changed files with 254 additions and 111 deletions
|
@ -136,7 +136,7 @@ def random_string():
|
|||
def list_files(path, extension):
|
||||
import os
|
||||
def matches(f):
|
||||
return os.path.splitext(f)[1] == '.' + extension
|
||||
return os.path.splitext(f)[1] == '.' + extension and f.split(os.path.extsep)[1] != 'spec'
|
||||
|
||||
def join_path(dp, f):
|
||||
# Remove the static/ prefix. It is added in the template.
|
||||
|
|
Reference in a new issue