Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 3d53fa2

Browse files
author
Tyera Eulberg
authored
Move ATA tests to separate crate (#3429)
1 parent f5ce86d commit 3d53fa2

File tree

11 files changed

+31
-5
lines changed

11 files changed

+31
-5
lines changed

Cargo.lock

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[workspace]
22
members = [
33
"associated-token-account/program",
4+
"associated-token-account/program-test",
45
"binary-option/program",
56
"binary-oracle-pair/program",
67
"examples/rust/cross-program-invocation",
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[package]
2+
authors = ["Solana Maintainers <[email protected]>"]
3+
description = "SPL Associated Token Account Program Tests"
4+
edition = "2018"
5+
license = "Apache-2.0"
6+
name = "spl-associated-token-account-test"
7+
repository = "https://github.com/solana-labs/solana-program-library"
8+
version = "0.0.1"
9+
10+
[features]
11+
test-bpf = []
12+
13+
[dev-dependencies]
14+
solana-program = "1.10.33"
15+
solana-program-test = "1.10.33"
16+
solana-sdk = "1.10.33"
17+
spl-associated-token-account = { version = "1.1", path = "../program", features = ["no-entrypoint"] }
18+
spl-token = { version = "3.4", path = "../../token/program", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.4", path = "../../token/program-2022", features = ["no-entrypoint"] }

0 commit comments

Comments
 (0)