amtoine / nu-git-manager

A collection of Nushell tools to manage Git repositories.
GNU General Public License v3.0
26 stars 2 forks source link

fix export use in the tests #123

Closed amtoine closed 9 months ago

amtoine commented 9 months ago

this is a minor refactor in the tests. instead of doing

module some-tests {
    ...
}
export use some-tests

it's possible to directly do

export module some-tests {
    ...
}