Skip to content

Commit

Permalink
Remove PocketIC from repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
q-uint committed Dec 28, 2024
1 parent 6cdb045 commit 6564554
Show file tree
Hide file tree
Showing 23 changed files with 4 additions and 3,527 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,13 @@ You can find the documentation for each package in the links below. Examples can
| `candid` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/candid) | A Candid library for Golang. |
| `certification` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/certificate) | A Certification library for Golang. |
| `gen` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/gen) | A library to generate Golang clients. |
| `ic` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/ic) | Multiple auto-generated sub-modules to talk to the Internet Computer services |
| `identity` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/identity) | A library that creates/manages identities. |
| `pocketic` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/pocketic) | A client library to talk to the PocketIC Server. |
| `pocketic-go` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/pocketic-go) | A client library to talk to the PocketIC Server. |
| `principal` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/principal) | Generic Identifiers for the Internet Computer |
| `registry` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/agent-go/registry) | A client to interact with the registry canister. |
|-----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|
| `ic-go` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/ic-go) | Multiple auto-generated sub-modules to talk to the Internet Computer services |
| `pocketic-go` | [![DOC](https://img.shields.io/badge/-DOC-blue)](https://pkg.go.dev/github.com/aviate-labs/pocketic-go) | A client library to talk to the PocketIC Server. |

More dependencies in the [go.mod](./go.mod) file.

Expand Down
13 changes: 0 additions & 13 deletions agent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (

"github.com/aviate-labs/agent-go"
"github.com/aviate-labs/agent-go/certification/hashtree"
"github.com/aviate-labs/agent-go/ic"
"github.com/aviate-labs/agent-go/identity"
"github.com/aviate-labs/agent-go/principal"
)
Expand Down Expand Up @@ -121,18 +120,6 @@ func TestAgent_Call(t *testing.T) {
}
}

func TestAgent_Call_provisionalTopUpCanister(t *testing.T) {
a, err := ic.NewAgent(ic.MANAGEMENT_CANISTER_PRINCIPAL, agent.DefaultConfig)
if err != nil {
t.Fatal(err)
}
if err := a.ProvisionalTopUpCanister(ic.ProvisionalTopUpCanisterArgs{
CanisterId: LEDGER_PRINCIPAL,
}); err == nil {
t.Fatal()
}
}

func TestAgent_Query_Ed25519(t *testing.T) {
id, err := identity.NewRandomEd25519Identity()
if err != nil {
Expand Down
Loading

0 comments on commit 6564554

Please sign in to comment.