Skip to content

Commit

Permalink
Fix several broken tests suites.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdiehl committed Mar 3, 2013
1 parent d6a6f4b commit b86af54
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 69 deletions.
17 changes: 6 additions & 11 deletions blaze/module/tests/test_simple.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,16 @@
import typing
import nodes as N
from proxy import Proxy

from parser import mopen
import blaze.module.nodes as N
from blaze.module.proxy import Proxy
from blaze.module.parser import mopen

from operator import add

from nose.tools import assert_raises

from unittest import skip

#------------------------------------------------------------------------

def test_signatures():
a = mopen('blaze.mod')
print "Module".center(80, '=')
print a.show()
a = mopen('blaze/module/blaze.mod')
print "Module".center(80, '=')
print a.show()

#------------------------------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions blaze/module/tests/test_typing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import typing
import nodes as N
from parser import mread
import blaze.module.typing
import blaze.module.nodes as N
from blaze.module.parser import mread

def test_resolution1():

Expand Down
55 changes: 0 additions & 55 deletions blaze/tests/test_unification.py

This file was deleted.

0 comments on commit b86af54

Please sign in to comment.