Skip to content

Commit

Permalink
Update test_basic.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Aug 19, 2016
1 parent ac7843e commit 9ea2700
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_basic.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import unittest
import sys

from autowig import autowig

Expand All @@ -11,6 +12,8 @@ def setUpClass(cls):
autowig.parser.plugin = 'libclang'
autowig.generator.plugin = 'boost_python_internal'
cls.directory = os.path.abspath(os.path.join('doc', 'basic'))
print sys.prefix
print cls.directory

def test_mapping_export(self):
"""Test `mapping` export"""
Expand Down Expand Up @@ -51,4 +54,4 @@ def test_boost_python_pattern_generator(self):
plugin = autowig.generator.plugin
autowig.generator.plugin = 'boost_python_pattern'
self.test_mapping_export()
autowig.generator.plugin = plugin
autowig.generator.plugin = plugin

0 comments on commit 9ea2700

Please sign in to comment.