Skip to content

Commit

Permalink
Updated references from old repo (ShaneGH) to new one (fsprojects)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneGH committed Jan 14, 2025
1 parent e47ad3d commit 422ecc1
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 30 deletions.
20 changes: 10 additions & 10 deletions Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@

### Inputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)




### Outputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)



Expand Down Expand Up @@ -182,14 +182,14 @@

### Inputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)




### Outputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)



Expand Down Expand Up @@ -283,14 +283,14 @@

### Inputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)




### Outputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)



Expand Down Expand Up @@ -408,14 +408,14 @@

### Inputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)




### Outputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)



Expand Down Expand Up @@ -501,14 +501,14 @@

### Inputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)




### Outputs

* There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)
* There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)



Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
An in-memory dynamodb client for automated testing

[![Made with F#](https://img.shields.io/badge/Made%20with-FSharp-rgb(184,69,252).svg)](https://fsharp.org/)
[![Build Status](https://github.com/ShaneGH/TestDynamo/actions/workflows/dotnet2.yml/badge.svg)](https://github.com/ShaneGH/TestDynamo/actions)
[![Code coverage](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2FShaneGH%2FTestDynamo%2Frefs%2Fheads%2Fmain%2FautomatedBuildResults.json&query=%24.projects.TestDynamo.coverage&label=Code%20Coverage&color=green "Code coverage")](https://github.com/ShaneGH/TestDynamo/blob/main/tests/coverage.ps1)
[![Github](https://img.shields.io/badge/Github-TestDynamo-black "Github")](https://github.com/ShaneGH/TestDynamo)
[![Build Status](https://github.com/fsprojects/TestDynamo/actions/workflows/dotnet2.yml/badge.svg)](https://github.com/fsprojects/TestDynamo/actions)
[![Code coverage](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fraw.githubusercontent.com%2Ffsprojects%2FTestDynamo%2Frefs%2Fheads%2Fmain%2FautomatedBuildResults.json&query=%24.projects.TestDynamo.coverage&label=Code%20Coverage&color=green "Code coverage")](https://github.com/fsprojects/TestDynamo/blob/main/tests/coverage.ps1)
[![Github](https://img.shields.io/badge/Github-TestDynamo-black "Github")](https://github.com/fsprojects/TestDynamo)
[![NuGet](https://img.shields.io/badge/NuGet-TestDynamo-blue "NuGet")](https://www.nuget.org/packages/TestDynamo)
[![NuGet](https://img.shields.io/badge/NuGet-TestDynamo.Serialization-blue "NuGet")](https://www.nuget.org/packages/TestDynamo.Serialization)
[![NuGet](https://img.shields.io/badge/NuGet-TestDynamo.Lambda-blue "NuGet")](https://www.nuget.org/packages/TestDynamo.Lambda)

TestDynamo is a rewrite of dynamodb in dotnet designed for testing and debugging.
It implements a partial feature set of `IAmazonDynamoDb` to manage schemas and read and write items.

* [Core features](https://github.com/ShaneGH/TestDynamo/blob/main/Features.md)
* [Core features](https://github.com/fsprojects/TestDynamo/blob/main/Features.md)
* Table management (Create/Update/Delete table)
* Index management (Create/Update/Delete index)
* Item operations (Put/Delete/Update etc)
Expand Down Expand Up @@ -76,7 +76,7 @@ TestDynamo has a suite of features and components to model a dynamodb environmen
* [`Api.GlobalDatabase`](#global-database) models an AWS account spread over multiple regions. It contains `Api.Database`s.
* [Global databases](#global-database-cloning) can be cloned too
* [`TestDynamoClient`](#testdynamoclient) is the entry point for linking a database to a `AmazonDynamoDBClient`.
* Check the [features](https://github.com/ShaneGH/TestDynamo/blob/main/Features.md) for a full list of endpoints, request args and responses that are supported.
* Check the [features](https://github.com/fsprojects/TestDynamo/blob/main/Features.md) for a full list of endpoints, request args and responses that are supported.
* [`DatabaseSerializer`](#database-serializers) is a json serializer/deserializer for entire databases and global databases.
* [Cloud Formation Templates](#cloud-formation-templates) can be consumed to to initialize databases and global databases
* [Locking and atomic transactions](#locking-and-atomic-transactions)
Expand Down Expand Up @@ -215,7 +215,7 @@ public async Task TestSomething()

Use the handy debug properties on `Api.Database` and `Api.GlobalDatabase` in your debugger of choice

![https://raw.githubusercontent.com/ShaneGH/TestDynamo/refs/heads/main/Docs/DbDebugger.png](./Docs/DbDebugger.png "Debugger")
![https://raw.githubusercontent.com/fsprojects/TestDynamo/refs/heads/main/Docs/DbDebugger.png](./Docs/DbDebugger.png "Debugger")

### Test Tools

Expand Down
2 changes: 1 addition & 1 deletion TestDynamo.Lambda/TestDynamo.Lambda.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Title>TestDynamo.Lambda</Title>
<PackageId>TestDynamo.Lambda</PackageId>
<PackageTags>AWS Amazon DynamoDB In-Memory InMemory Testing FSharp</PackageTags>
<PackageProjectUrl>https://github.com/ShaneGH/TestDynamo</PackageProjectUrl>
<PackageProjectUrl>https://github.com/fsprojects/TestDynamo</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion TestDynamo.Serialization/TestDynamo.Serialization.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Title>TestDynamo.Serialization</Title>
<PackageId>TestDynamo.Serialization</PackageId>
<PackageTags>AWS Amazon DynamoDB In-Memory InMemory Testing FSharp</PackageTags>
<PackageProjectUrl>https://github.com/ShaneGH/TestDynamo</PackageProjectUrl>
<PackageProjectUrl>https://github.com/fsprojects/TestDynamo</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion TestDynamo/TestDynamo.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Title>TestDynamo</Title>
<PackageId>TestDynamo</PackageId>
<PackageTags>AWS Amazon DynamoDB In-Memory InMemory Testing FSharp</PackageTags>
<PackageProjectUrl>https://github.com/ShaneGH/TestDynamo</PackageProjectUrl>
<PackageProjectUrl>https://github.com/fsprojects/TestDynamo</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion tools/Features/FeatureDescriptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private static object Descriptions()
{
var backupExample = new
{
__description = "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)",
__description = "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)",
__omitChildren = true
};

Expand Down
20 changes: 10 additions & 10 deletions tools/Features/Features.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@

### Inputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"




### Outputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"



Expand Down Expand Up @@ -182,14 +182,14 @@

### Inputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"




### Outputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"



Expand Down Expand Up @@ -283,14 +283,14 @@

### Inputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"




### Outputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"



Expand Down Expand Up @@ -408,14 +408,14 @@

### Inputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"




### Outputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"



Expand Down Expand Up @@ -501,14 +501,14 @@

### Inputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"




### Outputs

* "There is an example of how to implement backups [in the README](https://github.com/ShaneGH/TestDynamo#implement-backups-functionality)"
* "There is an example of how to implement backups [in the README](https://github.com/fsprojects/TestDynamo#implement-backups-functionality)"



Expand Down

0 comments on commit 422ecc1

Please sign in to comment.