Skip to content

Commit

Permalink
added multiple choice approver tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso committed Sep 18, 2024
1 parent 3ab425c commit f7bd383
Show file tree
Hide file tree
Showing 7 changed files with 1,928 additions and 4 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ dao-dao-core = { path = "./contracts/dao-dao-core", version = "2.5.0" }
dao-dao-macros = { path = "./packages/dao-dao-macros", version = "2.5.0" }
dao-hooks = { path = "./packages/dao-hooks", version = "2.5.0" }
dao-interface = { path = "./packages/dao-interface", version = "2.5.0" }
dao-pre-propose-approval-multiple = { path = "./contracts/pre-propose/dao-pre-propose-approval-multiple", version = "2.5.0" }
dao-pre-propose-approval-single = { path = "./contracts/pre-propose/dao-pre-propose-approval-single", version = "2.5.0" }
dao-pre-propose-approver = { path = "./contracts/pre-propose/dao-pre-propose-approver", version = "2.5.0" }
dao-pre-propose-base = { path = "./packages/dao-pre-propose-base", version = "2.5.0" }
Expand Down
7 changes: 6 additions & 1 deletion contracts/pre-propose/dao-pre-propose-approver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[package]
name = "dao-pre-propose-approver"
authors = ["ekez <[email protected]>", "Jake Hartnell <[email protected]>"]
authors = [
"ekez <[email protected]>",
"Jake Hartnell <[email protected]>",
]
description = "A DAO DAO pre-propose module for automatically making approval proposals for dao-pre-propose-approval-single."
edition = { workspace = true }
license = { workspace = true }
Expand Down Expand Up @@ -35,7 +38,9 @@ cw20 = { workspace = true }
cw20-base = { workspace = true }
dao-dao-core = { workspace = true }
dao-hooks = { workspace = true }
dao-pre-propose-approval-multiple = { workspace = true, features = ["library"] }
dao-pre-propose-approval-single = { workspace = true, features = ["library"] }
dao-proposal-multiple = { workspace = true, features = ["library"] }
dao-proposal-single = { workspace = true, features = ["library"] }
dao-testing = { workspace = true }
dao-voting = { workspace = true }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pub mod multiple;
pub mod single;
Loading

0 comments on commit f7bd383

Please sign in to comment.