require 'helper' describe Scales::Storage::Sync do it "should set and get a key" do Scales::Storage::Sync.set_content "test_key", "a test value" Scales::Storage::Sync.get_content("test_key").should == "a test value" end it "should set and get and delete a resource" do Scales::Storage::Sync.set_content "test_key", "a test value" Scales::Storage::Sync.get_content("test_key").should == "a test value" Scales::Storage::Sync.del_content "test_key" Scales::Storage::Sync.get_content("test_key").should be_nil end it "should set and get and delete a partial" do Scales::Storage::Sync.set_content "test_key", "a test value" Scales::Storage::Sync.get_content("test_key").should == "a test value" Scales::Storage::Sync.del_content "test_key" Scales::Storage::Sync.get_content("test_key").should be_nil end context "partials" do before(:each) do Scales.config.partials = true Scales::Storage::Sync.flushall! end it "resolves partials" do @html = <<-HTML

Hello World

HTML @header = <<-HTML HTML @sub_header = <<-HTML HTML Scales::Storage::Sync.set_content "/tracks", @html Scales::Storage::Sync.set_content "_header", @header Scales::Storage::Sync.set_content "_sub_header", @sub_header squeeze(Scales::Storage::Sync.get_content("/tracks", true)).should == squeeze(@html.gsub('Scales.partial "_header"', @header).gsub('Scales.partial "_sub_header"', @sub_header)) end end end describe Scales::Storage::Async do it "should set and get a key" do async do Scales::Storage::Async.set("test_key", "a test value") do Scales::Storage::Async.get("test_key") do |value| value.should == "a test value" end end end end it "should set and get a resource" do async do Scales::Storage::Async.set_content "test_key", "a test value" Scales::Storage::Async.get_content("test_key").should == "a test value" Scales::Storage::Async.del_content "test_key" Scales::Storage::Async.get_content("test_key").should be_nil end end it "should set and get a partial" do async do Scales::Storage::Async.set_content "test_key", "a test value" Scales::Storage::Async.get_content("test_key").should == "a test value" Scales::Storage::Async.del_content "test_key" Scales::Storage::Async.get_content("test_key").should be_nil end end context "partials" do before(:each) do Scales.config.partials = true Scales::Storage::Sync.flushall! end it "resolves partials" do @html = <<-HTML

Hello World

HTML @header = <<-HTML HTML @sub_header = <<-HTML HTML async do Scales::Storage::Async.set_content "/tracks", @html Scales::Storage::Async.set_content "_header", @header Scales::Storage::Async.set_content "_sub_header", @sub_header squeeze(Scales::Storage::Async.get_content("/tracks", true)).should == squeeze(@html.gsub('Scales.partial "_header"', @header).gsub('Scales.partial "_sub_header"', @sub_header)) end end end end