Added product categories
continuous-integration/drone/pr Build is passing

This commit is contained in:
Khwezi Mngoma
2026-05-30 15:35:35 +02:00
parent e40c958066
commit 18d1640808
16 changed files with 1318 additions and 39 deletions
@@ -62,7 +62,7 @@ public class CategoryServiceFeatureTests(Fixture fixture) : IClassFixture<Fixtur
[IntegrationFact]
public async Task CreateCategoryAsync_ShouldReturn_ResultWithCategoryId()
{
var result = await categoryService.CreateCategoryAsync("Test", false, fixture.CancellationToken);
var result = await categoryService.CreateCategoryAsync("Test", true, fixture.CancellationToken);
Assert.True(result.IsSuccess);
Assert.True(result.Value > 0);