Sha256: b217f99a1d553120c724cfe84f33f51c671469db69d7d2118b554eccd9667cb3
Contents?: true
Size: 890 Bytes
Versions: 4
Compression:
Stored size: 890 Bytes
Contents
require 'spec_helper' require 'mini_profiler/timer_struct' describe Rack::MiniProfiler::TimerStruct do before do @timer = Rack::MiniProfiler::TimerStruct.new('Mini' => 'Profiler') end it 'has the the Mini attribute' do @timer['Mini'].should == 'Profiler' end it 'allows us to set any attribute we want' do @timer['Hello'] = 'World' @timer['Hello'].should == 'World' end describe 'to_json' do before do @timer['IceIce'] = 'Baby' @json = @timer.to_json end it 'has a JSON value' do @json.should_not be_nil end describe 'deserialized' do before do @deserialized = ::JSON.parse(@json) end it 'produces a hash' do @deserialized.is_a?(Hash).should be_true end it 'has the element we added' do @deserialized['IceIce'].should == 'Baby' end end end end
Version data entries
4 entries across 4 versions & 1 rubygems