Sha256: dc92b73782ebf048156d0b70575ceea7fdb42a5a96cd384d8e69f3bb3b66febf

Contents?: true

Size: 1.87 KB

Versions: 9

Compression:

Stored size: 1.87 KB

Contents

#!/usr/bin/env rspec
# frozen_string_literal: true

# Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require 'trenni'
require 'trenni/markup'

RSpec.describe Trenni::MarkupString do
	let(:template) {Trenni::MarkupTemplate.load_file File.expand_path('template_spec/basic.trenni', __dir__)}
	
	let(:html_text) {"<h1>Hello World</h1>"}
	
	it "should escape unsafe text" do
		model = double(text: html_text)
		
		expect(template.to_string(model)).to be == "&lt;h1&gt;Hello World&lt;/h1&gt;"
	end
	
	let(:safe_html_text) {Trenni::Builder.tag('h1', 'Hello World')}
	
	it "should not escape safe text" do
		model = double(text: safe_html_text)
		
		expect(template.to_string(model)).to be == html_text
	end
	
	it "should convert nil to empty string" do
		Trenni::Markup.append(subject, nil)
		
		expect(subject).to be_empty
	end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
trenni-3.14.0 spec/trenni/markup_spec.rb
trenni-3.13.2 spec/trenni/markup_spec.rb
trenni-3.13.1 spec/trenni/markup_spec.rb
trenni-3.13.0 spec/trenni/markup_spec.rb
trenni-3.12.0 spec/trenni/markup_spec.rb
trenni-3.11.0 spec/trenni/markup_spec.rb
trenni-3.10.0 spec/trenni/markup_spec.rb
trenni-3.9.0 spec/trenni/markup_spec.rb
trenni-3.8.0 spec/trenni/markup_spec.rb