We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 957bc26 commit 09864d1Copy full SHA for 09864d1
Rakefile
@@ -6,7 +6,7 @@ RSpec::Core::RakeTask.new(:spec)
6
7
RSpec::Core::RakeTask.new(:rcov) do |spec|
8
spec.rcov = true
9
- spec.rcov_opts = ['--exclude spec,gems']
+ spec.rcov_opts = ['-Ilib -Ispec --exclude spec,gems']
10
end
11
12
task :default => :spec
spec/rack/oauth2/server/util_spec.rb
@@ -1,3 +1,5 @@
1
+require 'spec_helper.rb'
2
+
3
describe Rack::OAuth2::Server::Util, ".parse_uri" do
4
5
context "when String is given" do
0 commit comments