No description
Find a file
2024-07-20 12:14:02 -05:00
.github/workflows [ci] Use latest version of setup-go 2024-06-21 15:33:15 -05:00
alloc Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
bitmap Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
directory Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
filesys Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
fusefs Disable fusefs under goose 2024-07-03 09:54:18 -05:00
inode Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
superblock Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
.gitignore Ignore coverage output file 2024-06-25 11:07:53 -05:00
consts.go Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
go.mod Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
go.sum Switch to new goose primitive packages 2024-07-20 12:14:02 -05:00
LICENSE Add license (MIT) 2024-06-25 11:10:03 -05:00
README.md Fix formatting in README 2024-06-26 07:13:49 -05:00

Simple file system

See the Rust version which has all the docs.

Developing

Run tests as usual:

go test ./...

To get a code coverage report:

go test -coverprofile cover.out ./...
go tool cover -html=cover.out