fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 429b333f5b9e77b81dbdec652f90006c117a2ad1 parent 1fc0416e391bdbdcbcdb8a583189f614bf1a4ea8 Author: John Hawthorn <john.hawthorn@gmail.com> Date: Wed, 28 Dec 2016 00:48:09 -0800 Add integration test helper to Makefile Diffstat:
| M | Makefile | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -20,6 +20,9 @@ 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 + test: check check: test/fzytest $(DEBUGGER) ./test/fzytest @@ -50,4 +53,4 @@ clean: veryclean: clean rm -f config.h -.PHONY: test check all clean veryclean install fmt +.PHONY: test check all clean veryclean install fmt integration_test