Browse Source

simplify file structure

pull/252/head
William Ting 10 years ago
parent
commit
3ef1195077
7 changed files with 5 additions and 5 deletions
  1. +0
    -1
      autojump_argparse.py
  2. +1
    -0
      install.py
  3. +0
    -1
      tests/autojump.py
  4. +0
    -1
      tests/autojump_argparse.py
  5. +0
    -1
      tests/autojump_data.py
  6. +0
    -1
      tests/autojump_utils.py
  7. +4
    -0
      tests/autojump_utils_test.py

+ 0
- 1
autojump_argparse.py View File

@ -1 +0,0 @@
bin/autojump_argparse.py

+ 1
- 0
install.py View File

@ -8,6 +8,7 @@ import platform
import shutil
import sys
sys.path.append('bin')
from autojump_argparse import ArgumentParser
SUPPORTED_SHELLS = ('bash', 'zsh', 'fish')

+ 0
- 1
tests/autojump.py View File

@ -1 +0,0 @@
../bin/autojump

+ 0
- 1
tests/autojump_argparse.py View File

@ -1 +0,0 @@
../bin/autojump_argparse.py

+ 0
- 1
tests/autojump_data.py View File

@ -1 +0,0 @@
../bin/autojump_data.py

+ 0
- 1
tests/autojump_utils.py View File

@ -1 +0,0 @@
../bin/autojump_utils.py

+ 4
- 0
tests/autojump_utils_test.py View File

@ -20,6 +20,10 @@ from testify import setup
from testify import suite
from testify import teardown
if sys.version_info[0] == 3:
os.getcwdu = os.getcwd
sys.path.append(os.path.join(os.getcwd(), 'bin'))
import autojump_utils
from autojump_utils import create_dir
from autojump_utils import encode_local

Loading…
Cancel
Save