fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 0ea7200b39622c53d1aa2ed2ec4561e4ba03b134 parent 7a5206a440a0b53aa5a0b8ba1bde3012c2e9b9a6 Author: John Hawthorn <john.hawthorn@gmail.com> Date: Fri, 30 Dec 2016 18:13:06 -0800 Rename acceptance test Diffstat:
5 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -2,4 +2,4 @@ fzy fzytest *.o config.h -test/integration/vendor/bundle +test/acceptance/vendor/bundle diff --git a/Makefile b/Makefile @@ -20,8 +20,8 @@ all: fzy test/fzytest: $(TESTOBJECTS) $(CC) $(CFLAGS) $(CCFLAGS) -Isrc -o $@ $(TESTOBJECTS) $(LIBS) -integration_test: fzy - cd test/integration && bundle && bundle exec ruby integration_test.rb +acceptance: fzy + cd test/acceptance && bundle && bundle exec ruby acceptance_test.rb test: check check: test/fzytest @@ -53,4 +53,4 @@ clean: veryclean: clean rm -f config.h -.PHONY: test check all clean veryclean install fmt integration_test +.PHONY: test check all clean veryclean install fmt acceptance diff --git a/test/integration/Gemfile b/test/acceptance/Gemfile diff --git a/test/integration/Gemfile.lock b/test/acceptance/Gemfile.lock diff --git a/test/integration/integration_test.rb b/test/acceptance/acceptance_test.rb