Parcourir la source

simplify file structure

pull/252/head
William Ting il y a 10 ans
Parent
révision
3ef1195077
7 fichiers modifiés avec 5 ajouts et 5 suppressions
  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 Voir le fichier

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

+ 1
- 0
install.py Voir le fichier

@ -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 Voir le fichier

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

+ 0
- 1
tests/autojump_argparse.py Voir le fichier

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

+ 0
- 1
tests/autojump_data.py Voir le fichier

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

+ 0
- 1
tests/autojump_utils.py Voir le fichier

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

+ 4
- 0
tests/autojump_utils_test.py Voir le fichier

@ -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

Chargement…
Annuler
Enregistrer