Skip to content

Commit

Permalink
Merge pull request #4 from vykut/food-list-tests
Browse files Browse the repository at this point in the history
FoodListReducer Unit Tests
  • Loading branch information
vykut authored Dec 7, 2023
2 parents 8b616f7 + f6e0662 commit 1f9d327
Show file tree
Hide file tree
Showing 3 changed files with 269 additions and 16 deletions.
17 changes: 17 additions & 0 deletions FoodSpec.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
EC7DC2922B1F375100BC8FD5 /* Food.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC7DC2912B1F375100BC8FD5 /* Food.swift */; };
EC7DC2952B1F397D00BC8FD5 /* Database+Creation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC7DC2932B1F397D00BC8FD5 /* Database+Creation.swift */; };
EC7DC2982B1F669D00BC8FD5 /* DatabaseClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC7DC2972B1F669D00BC8FD5 /* DatabaseClient.swift */; };
EC87FC4E2B21B4BA006B8B28 /* AsyncAlgorithms in Frameworks */ = {isa = PBXBuildFile; productRef = EC87FC4D2B21B4BA006B8B28 /* AsyncAlgorithms */; };
EC9577B02B1869760082A0D1 /* FoodDetails.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC9577AF2B1869760082A0D1 /* FoodDetails.swift */; };
EC9577B22B1872E60082A0D1 /* NutritionalValueCard.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC9577B12B1872E60082A0D1 /* NutritionalValueCard.swift */; };
ECA64C232B1DB18E0036EE4F /* Energy.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECA64C222B1DB18E0036EE4F /* Energy.swift */; };
Expand Down Expand Up @@ -74,6 +75,7 @@
files = (
EC2799862B19ECE900D9E4B0 /* ComposableArchitecture in Frameworks */,
EC7DC28D2B1F32C400BC8FD5 /* GRDB in Frameworks */,
EC87FC4E2B21B4BA006B8B28 /* AsyncAlgorithms in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -216,6 +218,7 @@
packageProductDependencies = (
EC2799852B19ECE900D9E4B0 /* ComposableArchitecture */,
EC7DC28C2B1F32C400BC8FD5 /* GRDB */,
EC87FC4D2B21B4BA006B8B28 /* AsyncAlgorithms */,
);
productName = FoodSpec;
productReference = EC43E5562B175A140007CD40 /* FoodSpec.app */;
Expand Down Expand Up @@ -273,6 +276,7 @@
packageReferences = (
EC2799842B19ECE900D9E4B0 /* XCRemoteSwiftPackageReference "swift-composable-architecture" */,
EC7DC28B2B1F32C400BC8FD5 /* XCRemoteSwiftPackageReference "GRDB.swift" */,
EC87FC4C2B21B4BA006B8B28 /* XCRemoteSwiftPackageReference "swift-async-algorithms" */,
);
productRefGroup = EC43E5572B175A140007CD40 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -620,6 +624,14 @@
minimumVersion = 6.23.0;
};
};
EC87FC4C2B21B4BA006B8B28 /* XCRemoteSwiftPackageReference "swift-async-algorithms" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/apple/swift-async-algorithms.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 1.0.0;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
Expand All @@ -633,6 +645,11 @@
package = EC7DC28B2B1F32C400BC8FD5 /* XCRemoteSwiftPackageReference "GRDB.swift" */;
productName = GRDB;
};
EC87FC4D2B21B4BA006B8B28 /* AsyncAlgorithms */ = {
isa = XCSwiftPackageProductDependency;
package = EC87FC4C2B21B4BA006B8B28 /* XCRemoteSwiftPackageReference "swift-async-algorithms" */;
productName = AsyncAlgorithms;
};
/* End XCSwiftPackageProductDependency section */
};
rootObject = EC43E54E2B175A140007CD40 /* Project object */;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@
"version" : "6.23.0"
}
},
{
"identity" : "swift-async-algorithms",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-async-algorithms.git",
"state" : {
"revision" : "da4e36f86544cdf733a40d59b3a2267e3a7bbf36",
"version" : "1.0.0"
}
},
{
"identity" : "swift-case-paths",
"kind" : "remoteSourceControl",
Expand Down Expand Up @@ -51,7 +60,7 @@
"location" : "https://github.com/pointfreeco/swift-composable-architecture",
"state" : {
"branch" : "observation-beta",
"revision" : "b2dc36241005a5c62c68db6550a5218253f8cea7"
"revision" : "b5d478ee262d9e5bd7d98fa8779b10a9588b7c5e"
}
},
{
Expand Down
Loading

0 comments on commit 1f9d327

Please sign in to comment.