hyfabric
lorem ipsum
Contributing
- Add your function to a new or suitable existing source file in
R
. - Use Roxygen tags to document your function following
needs_layer()
as an example. - Build the package with
ctrl + shift + b
and fix any errors returned in the build panel. - Verify that the function does what you expect.
- Move code required to verify code function into a file names
test_{sourcefile}.R
usingtests/testthat/test_utils.R
as an example. - Ensure that basic functionality is tested by running tests with
ctrl + shift + t
.