Sha256: f013189d5b4699d707c0016bdd03e8592b5cc9a378fe2177e3f1f4296509acc7
Contents?: true
Size: 356 Bytes
Versions: 124
Compression:
Stored size: 356 Bytes
Contents
# frozen_string_literal: true RSpec.describe :escape_html do link :escape_html, from: :ree_text link :to_json, from: :ree_json it { obj = { id: 1 } result = escape_html(to_json(obj)) expect(result).to eq("{"id":1}") } it { expect(escape_html("<h1>Hello</h1>")).to eq("<h1>Hello</h1>") } end
Version data entries
124 entries across 124 versions & 1 rubygems