File: response.rb

package info (click to toggle)
libinnate-ruby 2010.07-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 812 kB
  • ctags: 621
  • sloc: ruby: 4,242; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 759 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require File.expand_path('../../helper', __FILE__)

class SpecResponse
  Innate.node '/'

  def index
    "some text"
  end
end

describe Innate::Response do
  describe 'Content-Type' do
    behaves_like :rack_test

    it 'responds with text/html by default' do
      got = get('/')
      got['Content-Type'].should == 'text/html'
    end

    it 'changes when option is changed' do
      Innate::Response.options.headers['Content-Type'] = 'text/plain'
      got = get('/')
      got['Content-Type'].should == 'text/plain'
    end

    it 'is ok with extended value' do
      Innate::Response.options.headers['Content-Type'] = 'text/plain; charset=utf-8'
      got = get('/')
      got['Content-Type'].should == 'text/plain; charset=utf-8'
    end
  end
end