From cd1f8921de421784853fa32bd25dd0c4ac4afa37 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Thu, 11 Aug 2011 23:25:20 -0400 Subject: [PATCH] Prototype tests now have 'Test' suffix, rather than 'test-' prefix (#25) --- test/Makefile | 3 ++- ...sibilityObjectFactory.js => VisibilityObjectFactoryTest.js} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename test/{test-VisibilityObjectFactory.js => VisibilityObjectFactoryTest.js} (100%) diff --git a/test/Makefile b/test/Makefile index dc4c6f5..59aabb0 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,6 +1,7 @@ tests := $(shell find . \ -name 'test-*' \ + -o -name '*Test.*' \ -a ! -name 'test-combine*.js'\ ) tests_combine := test-combine*.js @@ -11,7 +12,7 @@ tests_combine := test-combine*.js default: $(tests) combine combine: $(tests_combine) -test-%.js: FORCE +%.js: FORCE node --stack_trace_limit=20 $@ test-%: FORCE ./$@ diff --git a/test/test-VisibilityObjectFactory.js b/test/VisibilityObjectFactoryTest.js similarity index 100% rename from test/test-VisibilityObjectFactory.js rename to test/VisibilityObjectFactoryTest.js