Sha256: 25db5453ae6f01e2415ff24985b9b5684a1557487875db92369541cd96e68dab
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
require 'spec_helper' describe Webmachine::Trace::FSM do include_context "default resource" subject { Webmachine::Decision::FSM.new(resource, request, response) } before { Webmachine::Trace.trace_store = :memory } context "when tracing is enabled" do before { Webmachine::Trace.stub!(:trace?).and_return(true) } it "proxies the resource" do subject.resource.should be_kind_of(Webmachine::Trace::ResourceProxy) end it "records a trace" do subject.run response.trace.should_not be_empty Webmachine::Trace.traces.should have(1).item end it "commits the trace to separate storage when the request has finished processing" do Webmachine::Trace.should_receive(:record).with(subject.resource.object_id.to_s, response.trace).and_return(true) subject.run end end context "when tracing is disabled" do before { Webmachine::Trace.stub!(:trace?).and_return(false) } it "leaves no trace" do subject.run response.trace.should be_empty Webmachine::Trace.traces.should be_empty end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
webmachine-1.2.2 | spec/webmachine/trace/fsm_spec.rb |
webmachine-1.2.0 | spec/webmachine/trace/fsm_spec.rb |
webmachine-1.1.0 | spec/webmachine/trace/fsm_spec.rb |