blob: e28e7b8e4456b38835425defb7318c267bc3adf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- encoding : utf-8 -*-
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
require File.expand_path(File.dirname(__FILE__) + '/alaveteli_dsl')
describe 'when making stripping cookies' do
it 'should not set a cookie when no significant session data is set' do
get 'country_message'
response.headers['Set-Cookie'].should be_blank
end
end
|