Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
a0dccca2
Commit
a0dccca2
authored
Sep 09, 2015
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a decorator-module test
parent
4e7933aa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
.gitmodules
.gitmodules
+3
-0
test/integration/decorator_test.py
test/integration/decorator_test.py
+13
-0
test/lib/decorator
test/lib/decorator
+1
-0
No files found.
.gitmodules
View file @
a0dccca2
...
...
@@ -34,3 +34,6 @@
[submodule "test/lib/numpy"]
path = test/lib/numpy
url = https://github.com/numpy/numpy
[submodule "test/lib/decorator"]
path = test/lib/decorator
url = https://github.com/micheles/decorator
test/integration/decorator_test.py
0 → 100644
View file @
a0dccca2
import
os
,
sys
sys
.
path
.
append
(
os
.
path
.
dirname
(
__file__
)
+
"/../lib"
)
EXTRA_PATH
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
+
"/../lib/decorator/src"
sys
.
path
.
insert
(
0
,
EXTRA_PATH
)
EXTRA_PATH
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
+
"/../lib/decorator"
sys
.
path
.
insert
(
0
,
EXTRA_PATH
)
import
decorator
import
tests.test
import
unittest
unittest
.
main
(
tests
.
test
)
decorator
@
e13cf070
Subproject commit e13cf0704b7c28f1de1e71cb7c59b47a84daa9ca
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment