Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paultag committed Apr 2, 2013
1 parent c4b270a commit b077af9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/importer/test_importer.py
Original file line number Original file line Diff line number Diff line change
@@ -1,10 +1,14 @@
from hy.importer import import_file_to_module from hy.importer import import_file_to_module, import_string_to_ast

import ast

# import_file_to_module




def test_basics(): def test_basics():
"Make sure the basics of the importer work" "Make sure the basics of the importer work"
module = import_file_to_module("basic", module = import_file_to_module("basic",
"tests/resources/importer/basic.hy") "tests/resources/importer/basic.hy")


def test_stringer():
"Make sure the basics of the importer work"
_ast = import_string_to_ast("(defn square [x] (* x x))")
assert type(_ast.body[0]) == ast.FunctionDef

0 comments on commit b077af9

Please sign in to comment.