-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import unittest | ||
from governance import GovernanceManager # Assuming you have a GovernanceManager class | ||
|
||
class TestGovernanceManager(unittest.TestCase): | ||
def setUp(self): | ||
self.governance_manager = GovernanceManager() | ||
|
||
def test_create_proposal(self): | ||
proposal = self.governance_manager.create_proposal("Increase funding for project X") | ||
self.assertIsNotNone(proposal) | ||
self.assertEqual(proposal.title, "Increase funding for project X") | ||
|
||
def test_vote_on_proposal(self): | ||
proposal = self.governance_manager.create_proposal("Improve user interface") | ||
self.governance_manager.vote(proposal.id, "Alice", "yes") | ||
self.assertEqual(proposal.votes["yes"], 1) | ||
|
||
def test_proposal_not_found(self): | ||
with self.assertRaises(ValueError): | ||
self.governance_manager.vote("nonexistent_id", "Bob", "no") | ||
|
||
if __name__ == "__main__": | ||
unittest.main() |