Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
4cbff596
Commit
4cbff596
authored
Apr 06, 2014
by
Martín Gaitán
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor tests as a CythonTest class
parent
373581e4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
56 deletions
+52
-56
Cython/Build/Tests/TestIpythonMagic.py
Cython/Build/Tests/TestIpythonMagic.py
+52
-56
No files found.
Cython/Build/Tests/TestIpythonMagic.py
View file @
4cbff596
...
...
@@ -2,69 +2,65 @@
"""Tests for the Cython magics extension."""
import
os
import
nose.tools
as
nt
from
IPython.testing
import
decorators
as
dec
from
IPython.utils
import
py3compat
code
=
py3compat
.
str_to_unicode
(
"""def f(x):
return 2*x
"""
)
try
:
import
Cython
from
IPython.testing.globalipapp
import
get_ipython
from
IPython.testing
import
decorators
as
dec
from
IPython.utils
import
py3compat
except
:
__test__
=
False
from
Cython.TestUtils
import
CythonTest
ip
=
get_ipython
()
code
=
py3compat
.
str_to_unicode
(
"""def f(x):
return 2*x
"""
)
def
setup
():
ip
.
extension_manager
.
load_extension
(
'cythonmagic'
)
class
TestIPythonMagic
(
CythonTest
):
def
setUp
(
self
):
CythonTest
.
setUp
(
self
)
ip
.
extension_manager
.
load_extension
(
'cython'
)
def
test_cython_inline
(
):
def
test_cython_inline
(
self
):
ip
.
ex
(
'a=10; b=20'
)
result
=
ip
.
run_cell_magic
(
'cython_inline'
,
''
,
'return a+b'
)
nt
.
assert_e
qual
(
result
,
30
)
result
=
ip
.
run_cell_magic
(
'cython_inline'
,
''
,
'return a+b'
)
self
.
assertE
qual
(
result
,
30
)
@
dec
.
skip_win32
def
test_cython_pyximport
():
@
dec
.
skip_win32
def
test_cython_pyximport
(
self
):
module_name
=
'_test_cython_pyximport'
ip
.
run_cell_magic
(
'cython_pyximport'
,
module_name
,
code
)
ip
.
ex
(
'g = f(10)'
)
nt
.
assert_e
qual
(
ip
.
user_ns
[
'g'
],
20.0
)
self
.
assertE
qual
(
ip
.
user_ns
[
'g'
],
20.0
)
ip
.
run_cell_magic
(
'cython_pyximport'
,
module_name
,
code
)
ip
.
ex
(
'h = f(-10)'
)
nt
.
assert_e
qual
(
ip
.
user_ns
[
'h'
],
-
20.0
)
self
.
assertE
qual
(
ip
.
user_ns
[
'h'
],
-
20.0
)
try
:
os
.
remove
(
module_name
+
'.pyx'
)
os
.
remove
(
module_name
+
'.pyx'
)
except
OSError
:
pass
def
test_cython
():
def
test_cython
(
self
):
ip
.
run_cell_magic
(
'cython'
,
''
,
code
)
ip
.
ex
(
'g = f(10)'
)
nt
.
assert_e
qual
(
ip
.
user_ns
[
'g'
],
20.0
)
self
.
assertE
qual
(
ip
.
user_ns
[
'g'
],
20.0
)
def
test_cython_name
():
def
test_cython_name
(
self
):
# The Cython module named 'mymodule' defines the function f.
ip
.
run_cell_magic
(
'cython'
,
'--name=mymodule'
,
code
)
# This module can now be imported in the interactive namespace.
ip
.
ex
(
'import mymodule; g = mymodule.f(10)'
)
nt
.
assert_equal
(
ip
.
user_ns
[
'g'
],
20.0
)
self
.
assertEqual
(
ip
.
user_ns
[
'g'
],
20.0
)
@
dec
.
skip_win32
def
test_extlibs
(
):
@
dec
.
skip_win32
def
test_extlibs
(
self
):
code
=
py3compat
.
str_to_unicode
(
"""
from libc.math cimport sin
x = sin(0.0)
"""
)
ip
.
user_ns
[
'x'
]
=
1
ip
.
run_cell_magic
(
'cython'
,
'-l m'
,
code
)
nt
.
assert_equal
(
ip
.
user_ns
[
'x'
],
0
)
self
.
assertEqual
(
ip
.
user_ns
[
'x'
],
0
)
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