tokuhirom / Minilla

Authorizing tool for CPAN modules
https://metacpan.org/release/Minilla
Other
97 stars 65 forks source link

spelling.t skips if no spelling file specified #284

Open srchulo opened 4 years ago

srchulo commented 4 years ago

spelling.t skips if no spelling switch file is specified:

https://github.com/tokuhirom/Minilla/blob/81a80aa56041713bcbf9a0b3d49896ce06eb0aaf/lib/Minilla/ReleaseTest.pm#L110

But Spellunker loads two dictionaries that come packaged, even if you don't specify your own in $HOME. Would it be possible to remove this skip so that tests could run with the dictionaries that come with the module? An additional dictionary could still be specified in $HOME.

skaji commented 4 years ago

For the time being, you may create an empty ~/.spellunker.en to run the test:

touch ~/.spellunker.en
srchulo commented 4 years ago

@skaji thanks. That's what I'll do!