blob: 107317880a11b40abb1dbb705e759e2d7d30c9f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require "spec_helper"
describe YARD::CLI::Yardoc do
before do
@yardoc = YARD::CLI::Yardoc.new
@yardoc.parse_arguments
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}
end
end
|