Sha256: 070d8ca687ffa217886c0c5a06806051d6aff188891e05ec8d7a6b08af2efd2f
Contents?: true
Size: 1.05 KB
Versions: 42
Compression:
Stored size: 1.05 KB
Contents
require 'spec_helper' include SpecInfra::Helper::Plamo describe php_config('default_mimetype') do let(:stdout) { 'text/html' } its(:value) { should eq 'text/html' } its(:command) { should eq "php -r 'echo get_cfg_var( \"default_mimetype\" );'" } end describe php_config('default_mimetype') do let(:stdout) { 'text/html' } its(:value) { should_not eq 'text/plain' } end describe php_config('session.cache_expire') do let(:stdout) { '180' } its(:value) { should eq 180 } its(:command) { should eq "php -r 'echo get_cfg_var( \"session.cache_expire\" );'" } end describe php_config('session.cache_expire') do let(:stdout) { '180' } its(:value) { should_not eq 360 } end describe php_config('mbstring.http_output_conv_mimetypes') do let(:stdout) { 'application' } its(:value) { should match /application/ } its(:command) { should eq "php -r 'echo get_cfg_var( \"mbstring.http_output_conv_mimetypes\" );'" } end describe php_config('mbstring.http_output_conv_mimetypes') do let(:stdout) { 'application' } its(:value) { should_not match /html/ } end
Version data entries
42 entries across 42 versions & 1 rubygems