diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..c7d6f42 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,10 @@ +REBAR ?= $(shell which rebar3) + +all: compile + erl -noshell -boot start_clean -pa ../../ibrowse/ebin -s ibrowse_test local_unit_tests -s erlang halt + +compile: + erl -pa ../../ibrowse/ebin -make + +clean: + $(REBAR) clean diff --git a/test/ibrowse_functional_tests.erl b/test/ibrowse_tests.erl similarity index 100% rename from test/ibrowse_functional_tests.erl rename to test/ibrowse_tests.erl