forked from stakwork/sphinx-tribes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request stakwork#1818 from stakwork/feat/features_test_wrap
Added Test Function Wrappers For Feature Test
- Loading branch information
Showing
2 changed files
with
63 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters