I too came across same situation (i.e., testing ssl request in rails
with specs).
Thinking there should be a solution.
Thanks,
Aashish
--
Posted via http://www.ruby-forum.com/.
___
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.or
Actually, Rails seems to correctly support *some* routing constraints
in tests (:format being one), but not others (:protocol being one).
I'm coming up with a failing test which I'll attach to that Rails
ticket, but just noting it here as an FYI to others...
On Dec 13, 9:43 am, Brian Ploetz wrot
OK, cool. I'll avoid banging my head against the wall in the mean
time. :-)
Thanks alot David.
BP
On Dec 13, 9:16 am, David Chelimsky wrote:
> On Dec 13, 2010, at 7:55 AM, Brian Ploetz wrote:
>
>
>
> > Anybody?
>
> > On Dec 9, 3:22 pm, Brian Ploetz wrote:
> >> Hi all,
>
> >> This is probably a
On Dec 13, 2010, at 7:55 AM, Brian Ploetz wrote:
> Anybody?
>
> On Dec 9, 3:22 pm, Brian Ploetz wrote:
>> Hi all,
>>
>> This is probably a stupid question, but I can't figure out how to do
>> this.
>>
>> If I have some routes which require SSL, how do I test that with
>> RSpec? For example
Anybody?
On Dec 9, 3:22 pm, Brian Ploetz wrote:
> Hi all,
>
> This is probably a stupid question, but I can't figure out how to do
> this.
>
> If I have some routes which require SSL, how do I test that with
> RSpec? For example:
>
> # routes.rb
> scope :constraints => { :protocol => "https"
Hi all,
This is probably a stupid question, but I can't figure out how to do
this.
If I have some routes which require SSL, how do I test that with
RSpec? For example:
# routes.rb
scope :constraints => { :protocol => "https" } do
match '/foos.(:format)' => 'foos#index', :via => :get, :cons