This commit is contained in:
2026-02-26 16:17:30 +01:00
commit 96e58bbf62
19 changed files with 5835 additions and 0 deletions

20
test/Gradebook.ts Normal file
View File

@@ -0,0 +1,20 @@
import assert from "node:assert/strict";
import { describe, it } from "node:test";
import { network } from "hardhat";
const { viem } = await network.connect();
const publicClient = await viem.getPublicClient();
describe("Gradebook", async function () {
it("Only the teacher can add students and points", async function () {
});
it("Everyone can read the grade for a student by their address", async function () {
});
it("An event is fired when the teacher submits points for a student", async function () {
});
});