possible rspec bug?
updating from 2.9 ~> 2.10 causes spec/controllers/publics_controller_spec.rb to break. Namely, it now seems that the host_meta, and web finger actions now return successful http codes, but have blank bodies. Running this code by hand shows that the response bodies are indeed not blank, as reported by rspec-rails 2.9.x
This commit is contained in:
parent
ebf2543586
commit
0975488964
2 changed files with 11 additions and 11 deletions
2
Gemfile
2
Gemfile
|
|
@ -166,7 +166,7 @@ end
|
|||
|
||||
group :test, :development do
|
||||
gem 'debugger', :platforms => :mri_19
|
||||
gem "rspec-rails", "~> 2.9.0"
|
||||
gem "rspec-rails", "~> 2.10"
|
||||
gem 'ruby-debug', :platforms => :mri_18
|
||||
end
|
||||
|
||||
|
|
|
|||
20
Gemfile.lock
20
Gemfile.lock
|
|
@ -379,20 +379,20 @@ GEM
|
|||
rpm_contrib (2.1.11)
|
||||
newrelic_rpm (>= 3.1.1)
|
||||
newrelic_rpm (>= 3.1.1)
|
||||
rspec (2.9.0)
|
||||
rspec-core (~> 2.9.0)
|
||||
rspec-expectations (~> 2.9.0)
|
||||
rspec-mocks (~> 2.9.0)
|
||||
rspec-core (2.9.0)
|
||||
rspec-expectations (2.9.1)
|
||||
rspec (2.10.0)
|
||||
rspec-core (~> 2.10.0)
|
||||
rspec-expectations (~> 2.10.0)
|
||||
rspec-mocks (~> 2.10.0)
|
||||
rspec-core (2.10.1)
|
||||
rspec-expectations (2.10.0)
|
||||
diff-lcs (~> 1.1.3)
|
||||
rspec-instafail (0.2.4)
|
||||
rspec-mocks (2.9.0)
|
||||
rspec-rails (2.9.0)
|
||||
rspec-mocks (2.10.1)
|
||||
rspec-rails (2.10.1)
|
||||
actionpack (>= 3.0)
|
||||
activesupport (>= 3.0)
|
||||
railties (>= 3.0)
|
||||
rspec (~> 2.9.0)
|
||||
rspec (~> 2.10.0)
|
||||
ruby-debug (0.10.4)
|
||||
columnize (>= 0.1)
|
||||
ruby-debug-base (~> 0.10.4.0)
|
||||
|
|
@ -536,7 +536,7 @@ DEPENDENCIES
|
|||
roxml!
|
||||
rpm_contrib (~> 2.1.7)
|
||||
rspec-instafail (>= 0.1.7)
|
||||
rspec-rails (~> 2.9.0)
|
||||
rspec-rails (~> 2.10)
|
||||
ruby-debug
|
||||
ruby-oembed (~> 0.8.7)
|
||||
sass-rails (= 3.2.5)
|
||||
|
|
|
|||
Loading…
Reference in a new issue