diff --git a/python-pw3270.cbp b/python-pw3270.cbp
index 71bb34e..b2b3ab7 100644
--- a/python-pw3270.cbp
+++ b/python-pw3270.cbp
@@ -11,6 +11,8 @@
+
+
@@ -36,7 +38,7 @@
-
+
diff --git a/test.sh b/test.sh
new file mode 100755
index 0000000..ffd924a
--- /dev/null
+++ b/test.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+export PYTHONPATH=.bin/Debug/
+python ./testprograms/sample.py
diff --git a/testprograms/sample.py b/testprograms/sample.py
new file mode 100644
index 0000000..c7b682a
--- /dev/null
+++ b/testprograms/sample.py
@@ -0,0 +1,31 @@
+#!/usr/bin/python
+#-*- coding: utf-8
+
+import py3270
+
+print "Teste extensão pw3270"
+
+print py3270.Revision()
+
+term = py3270.Terminal("")
+
+print "Using pw3270 version " + term.Version() + " revision " + term.Revision()
+
+term.Connect("tn3270://zos.efglobe.com:telnet",10);
+
+print term.IsConnected()
+print term.IsReady()
+
+print term.GetStringAt(14,19,38)
+
+print "-----------------------------------------------------------------------"
+print term
+print "-----------------------------------------------------------------------"
+
+
+
+
+
+
+
+
--
libgit2 0.21.2