Skip to content

Commit

Permalink
Merge pull request stakwork#1818 from stakwork/feat/features_test_wrap
Browse files Browse the repository at this point in the history
Added Test Function Wrappers For Feature Test
  • Loading branch information
elraphty authored Jul 2, 2024
2 parents 57bc736 + a2a7a69 commit c53fd9b
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 4 deletions.
63 changes: 63 additions & 0 deletions handlers/features_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
package handlers

import "testing"

func TestCreateOrEditFeatures(t *testing.T) {

}

func TestDeleteFeature(t *testing.T) {

}

func TestGetFeaturesByWorkspaceUuid(t *testing.T) {

}

func TestGetWorkspaceFeaturesCount(t *testing.T) {

}

func TestGetFeatureByUuid(t *testing.T) {

}

func TestCreateOrEditFeaturePhase(t *testing.T) {

}

func TestGetFeaturePhases(t *testing.T) {

}

func TestGetFeaturePhaseByUUID(t *testing.T) {

}

func TestDeleteFeaturePhase(t *testing.T) {

}

func TestCreateOrEditStory(t *testing.T) {

}

func TestGetStoriesByFeatureUuid(t *testing.T) {

}

func TestGetStoryByUuid(t *testing.T) {

}

func TestDeleteStory(t *testing.T) {

}

func TestGetBountiesByFeatureAndPhaseUuid(t *testing.T) {

}

func TestGetBountiesCountByFeatureAndPhaseUuid(t *testing.T) {

}
4 changes: 0 additions & 4 deletions handlers/workspaces_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1407,10 +1407,6 @@ func TestGetWorkspaceRepoByWorkspaceUuidAndRepoUuid(t *testing.T) {
})
}

func GetFeaturesByWorkspaceUuid(t *testing.T) {

}

func TestDeleteWorkspaceRepository(t *testing.T) {

}

0 comments on commit c53fd9b

Please sign in to comment.