sinatra/sinatra-contrib/spec/capture_spec.rb

101 lines
1.9 KiB
Ruby
Raw Normal View History

# -*- coding: utf-8 -*-
2011-05-12 11:47:59 -04:00
require 'slim'
2014-05-09 02:39:16 -04:00
require 'spec_helper'
2011-05-12 11:47:59 -04:00
describe Sinatra::Capture do
subject do
Sinatra.new do
enable :inline_templates
helpers Sinatra::Capture
end.new!
end
Tilt.prefer Tilt::ERBTemplate
extend Forwardable
def_delegators :subject, :capture, :capture_later
def render(engine, template)
subject.send(:render, engine, template.to_sym).strip.gsub(/\s+/, ' ')
end
shared_examples_for "a template language" do |engine|
lang = engine == :erubis ? :erb : engine
require "#{engine}"
2011-05-12 11:47:59 -04:00
it "captures content" do
2016-05-10 10:08:54 -04:00
expect(render(engine, "simple_#{lang}")).to eq("Say Hello World!")
2011-05-12 11:47:59 -04:00
end
it "allows nested captures" do
2016-05-10 10:08:54 -04:00
expect(render(engine, "nested_#{lang}")).to eq("Say Hello World!")
2011-05-12 11:47:59 -04:00
end
end
describe('haml') { it_behaves_like "a template language", :haml }
describe('slim') { it_behaves_like "a template language", :slim }
describe('erubis') { it_behaves_like "a template language", :erubis }
describe 'erb' do
it_behaves_like "a template language", :erb
it "handles utf-8 encoding" do
2016-05-10 10:08:54 -04:00
expect(render(:erb, "utf_8")).to eq("UTF-8 ")
end
it "handles ISO-8859-1 encoding" do
2016-07-20 04:53:24 -04:00
expect(render(:erb, "iso_8859_1")).to eq("ISO-8859-1 -")
2016-05-07 05:57:06 -04:00
end
end
2011-05-12 11:47:59 -04:00
end
__END__
@@ simple_erb
Say
<% a = capture do %>World<% end %>
Hello <%= a %>!
@@ nested_erb
Say
<% a = capture do %>
<% b = capture do %>World<% end %>
<%= b %>!
<% end %>
Hello <%= a.strip %>
@@ simple_slim
| Say
- a = capture do
| World
| Hello #{a.strip}!
@@ nested_slim
| Say
- a = capture do
- b = capture do
| World
| #{b.strip}!
| Hello #{a.strip}
@@ simple_haml
Say
- a = capture do
World
Hello #{a.strip}!
@@ nested_haml
Say
- a = capture do
- b = capture do
World
#{b.strip}!
Hello #{a.strip}
@@ utf_8
<% a = capture do %><% end %>
UTF-8 <%= a %>
@@ iso_8859_1
<% a = capture do %>-<% end %>
ISO-8859-1 <%= a.force_encoding("iso-8859-1") %>