mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-12 23:40:45 -07:00
Fix CI
This commit is contained in:
+2
-2
@@ -13,7 +13,7 @@ LiquidSpec.configure do |config|
|
||||
end
|
||||
|
||||
# Compile a template string into a Liquid::Template
|
||||
LiquidSpec.compile do |ctx, source, options|
|
||||
LiquidSpec.compile do |_ctx, source, options|
|
||||
Liquid::Template.parse(source, **options)
|
||||
end
|
||||
|
||||
@@ -22,7 +22,7 @@ end
|
||||
# @param template [Liquid::Template] compiled template
|
||||
# @param assigns [Hash] environment variables
|
||||
# @param options [Hash] :registers, :strict_errors, :exception_renderer
|
||||
LiquidSpec.render do |ctx, template, assigns, options|
|
||||
LiquidSpec.render do |_ctx, template, assigns, options|
|
||||
registers = Liquid::Registers.new(options[:registers] || {})
|
||||
|
||||
context = Liquid::Context.build(
|
||||
|
||||
@@ -12,14 +12,14 @@ LiquidSpec.configure do |config|
|
||||
end
|
||||
|
||||
# Compile a template string into a Liquid::Template
|
||||
LiquidSpec.compile do |ctx, source, options|
|
||||
LiquidSpec.compile do |_ctx, source, options|
|
||||
# Force lax mode
|
||||
options = options.merge(error_mode: :lax)
|
||||
Liquid::Template.parse(source, **options)
|
||||
end
|
||||
|
||||
# Render a compiled template with the given context
|
||||
LiquidSpec.render do |ctx, template, assigns, options|
|
||||
LiquidSpec.render do |_ctx, template, assigns, options|
|
||||
registers = Liquid::Registers.new(options[:registers] || {})
|
||||
|
||||
context = Liquid::Context.build(
|
||||
|
||||
@@ -14,7 +14,7 @@ LiquidSpec.configure do |config|
|
||||
end
|
||||
|
||||
# Compile a template string into a Liquid::Template
|
||||
LiquidSpec.compile do |ctx, source, options|
|
||||
LiquidSpec.compile do |_ctx, source, options|
|
||||
Liquid::Template.parse(source, **options)
|
||||
end
|
||||
|
||||
@@ -23,7 +23,7 @@ end
|
||||
# @param template [Liquid::Template] compiled template
|
||||
# @param assigns [Hash] environment variables
|
||||
# @param options [Hash] :registers, :strict_errors, :exception_renderer
|
||||
LiquidSpec.render do |ctx, template, assigns, options|
|
||||
LiquidSpec.render do |_ctx, template, assigns, options|
|
||||
registers = Liquid::Registers.new(options[:registers] || {})
|
||||
|
||||
context = Liquid::Context.build(
|
||||
|
||||
@@ -19,14 +19,14 @@ LiquidSpec.configure do |config|
|
||||
end
|
||||
|
||||
# Compile a template string into a Liquid::Template
|
||||
LiquidSpec.compile do |ctx, source, options|
|
||||
LiquidSpec.compile do |_ctx, source, options|
|
||||
# Force strict mode
|
||||
options = { error_mode: :strict }.merge(options)
|
||||
Liquid::Template.parse(source, **options)
|
||||
end
|
||||
|
||||
# Render a compiled template with the given context
|
||||
LiquidSpec.render do |ctx, template, assigns, options|
|
||||
LiquidSpec.render do |_ctx, template, assigns, options|
|
||||
registers = Liquid::Registers.new(options[:registers] || {})
|
||||
|
||||
context = Liquid::Context.build(
|
||||
|
||||
Reference in New Issue
Block a user