Typo in README.md
fib(n) = fib(n - 1) + fib(n - 2)
Here's what I see:
[~/tmp] git clone https://github.com/pragdave/dir_walker.git
Cloning into 'dir_walker'...
remote: Counting objects: 101, done.
remote: Total 101 (delta 0), reused 0 (delta 0), pack-reused 101
Receiving objects: 100% (101/101), 13.85 KiB | 0 bytes/s, done.
Resolving deltas: 100% (41/41), done.
Checking connectivity... done.
[~/tmp] cd dir_walker/
[~/t/dir_walker] mix test
Compiled lib/dir_walker.ex
Generated dir_walker.app
.........
Finished in 0.1 seconds (0.1s on load, 0.00s on tests)
9 tests, 0 failures
Randomized with seed 483056
[~/t/dir_walker]
Hmm strange testing on my mac at home I got what you got:
Compiled lib/dir_walker.ex
Generated dir_walker.app
DirWalkerTest
* returns only matching names if requested (6.7ms)
* stop method works (1.6ms)
* stream method works (1.8ms)
* returns directory names if asked to (0.3ms)
* stream method completes (0.7ms)
* returns directory names and stats if asked to (0.3ms)
* basic traversal works (0.8ms)
* traversal in chunks works (0.6ms)
* returns stat if asked to (0.4ms)
Finished in 0.1 seconds (0.1s on load, 0.01s on tests)
9 tests, 0 failures
Randomized with seed 526311
What OS were you running the tests on ?
Osx
I wonder if it is a case insensitivity issue. I'm at the airport now, but will look later On Apr 6, 2015 10:01 AM, "Low Kian Seong" [email protected] wrote:
Hmm strange testing on my mac at home I got what you got:
Compiled lib/dir_walker.ex Generated dir_walker.app
DirWalkerTest
- returns only matching names if requested (6.7ms)
- stop method works (1.6ms)
- stream method works (1.8ms)
- returns directory names if asked to (0.3ms)
- stream method completes (0.7ms)
- returns directory names and stats if asked to (0.3ms)
- basic traversal works (0.8ms)
- traversal in chunks works (0.6ms)
- returns stat if asked to (0.4ms)
Finished in 0.1 seconds (0.1s on load, 0.01s on tests) 9 tests, 0 failures
Randomized with seed 526311
What OS were you running the tests on ?
— Reply to this email directly or view it on GitHub https://github.com/pragdave/dir_walker/issues/6#issuecomment-90092185.