diff options
| author | Seba Gamboa <[email protected]> | 2015-10-12 14:12:21 -0200 |
|---|---|---|
| committer | Seba Gamboa <[email protected]> | 2015-10-12 14:12:21 -0200 |
| commit | d2538783741de8681bdd0fa7e7e268bc24eddb4a (patch) | |
| tree | c0a4a0411a9b75cdbc77a5b5e5f3ecc4a98dbd4f | |
| parent | 815138042c845a74ac17dbd308f43713815c9fd8 (diff) | |
| parent | 41d9833b00a6a6ef794b24daaa48761b2c6b3992 (diff) | |
| download | yard-mruby-d2538783741de8681bdd0fa7e7e268bc24eddb4a.tar.gz yard-mruby-d2538783741de8681bdd0fa7e7e268bc24eddb4a.zip | |
Merge pull request #7 from takahashim/fix-yardoc-spec
fix Failures in travis-ci
| -rw-r--r-- | spec/yardoc_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/yardoc_spec.rb b/spec/yardoc_spec.rb index 1073178..2268d5b 100644 --- a/spec/yardoc_spec.rb +++ b/spec/yardoc_spec.rb @@ -7,6 +7,6 @@ describe YARD::CLI::Yardoc do end it "should use mrblib/**/*.rb src/**/*.c include/**/*.h as default file glob" do - expect(@yardoc.files).to eq %w{mrblib/**/*.rb src/**/*.c include/**/*.h} + expect(@yardoc.files).to match_array(%w{mrblib/**/*.rb src/**/*.c include/**/*.h}) end end |
