File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1- .PHONY : test security install build release
1+ .PHONY : clean test security install build release
22
3- test :
3+ clean :
4+ rm -rf ./tmp coverage.out
5+
6+ test : clean
47 go test -coverprofile=coverage.out ./...
58 go tool cover -func=coverage.out
69
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ func TestCreateProjectFromRegistry(t *testing.T) {
2323 args {
2424 p : & registry.Project {
2525 Type : "backend" ,
26- Name : "echo " ,
26+ Name : "fiber " ,
2727 RootFolder : "../../tmp" ,
2828 },
2929 r : registry .Repositories ,
@@ -49,7 +49,7 @@ func TestCreateProjectFromRegistry(t *testing.T) {
4949 args {
5050 p : & registry.Project {
5151 Type : "backend" ,
52- Name : "echo " ,
52+ Name : "fiber " ,
5353 RootFolder : "../../tmp" ,
5454 },
5555 r : map [string ]* registry.Repository {
@@ -83,7 +83,7 @@ func TestCreateProjectFromRegistry(t *testing.T) {
8383 args {
8484 p : & registry.Project {
8585 Type : "backend" ,
86- Name : "echo " ,
86+ Name : "fiber " ,
8787 RootFolder : "../../tmp" ,
8888 },
8989 r : nil ,
@@ -105,7 +105,7 @@ func TestCreateProjectFromRegistry(t *testing.T) {
105105 args {
106106 p : & registry.Project {
107107 Type : "backend" ,
108- Name : "echo " ,
108+ Name : "fiber " ,
109109 RootFolder : "../../tmp" ,
110110 },
111111 r : registry .Repositories ,
You can’t perform that action at this time.
0 commit comments