Skip to content

Commit a6766af

Browse files
committed
Adds test data
1 parent 8ea005a commit a6766af

File tree

3 files changed

+4482
-0
lines changed

3 files changed

+4482
-0
lines changed

Makefile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
OPTS := ""
2+
3+
all: test test-md test-no-links test-only-dev test-only-prod test-json
4+
5+
test:
6+
php ./composer-lock-diff --from test-data/composer.lock.from --to test-data/composer.lock.to $(OPTS)
7+
8+
test-md:
9+
$(MAKE) test OPTS=--md
10+
11+
test-no-links:
12+
$(MAKE) test OPTS=--no-links
13+
14+
test-only-dev:
15+
$(MAKE) test OPTS=--only-dev
16+
17+
test-only-prod:
18+
$(MAKE) test OPTS=--only-prod
19+
20+
test-json:
21+
$(MAKE) test OPTS=--json

0 commit comments

Comments
 (0)