Adds failing test for cwd problem.

This commit is contained in:
Anthony Sottile 2014-03-29 13:00:24 -07:00
parent d4c9f9075e
commit aa9c77abe8
6 changed files with 69 additions and 28 deletions

View file

@ -0,0 +1,4 @@
- id: prints_cwd
name: Prints Cwd
entry: prints_cwd
language: python

View file

@ -0,0 +1,5 @@
import os
def func():
print os.getcwd()
return 0

View file

@ -0,0 +1,11 @@
from setuptools import find_packages
from setuptools import setup
setup(
name='prints_cwd',
version='0.0.0',
packages=find_packages('.'),
entry_points={
'console_scripts': ['prints_cwd = prints_cwd.main:func'],
},
)