Sha256: 65e1af3be45670aeadf145a792bdfe08b1e6145a1a1da8a7afd8819d4c27ad90
Contents?: true
Size: 1.8 KB
Versions: 1
Compression:
Stored size: 1.8 KB
Contents
require "spec_helper" module Chanko describe Function do let(:unit) do Loader.load(:example_unit) end def rails5_action_view_instance klass = Class.new(ActionView::Base) do def current_unit units.last end def units @units ||= [] end def path view_paths.first.to_s end end klass.new end def rails6_action_view_instance klass = Class.new(ActionView::Base.with_empty_template_cache) do def current_unit units.last end def units @units ||= [] end def path view_paths.first.to_s end end klass.with_view_paths([], {}, nil) end let(:context) do case Rails::VERSION::MAJOR when 5 rails5_action_view_instance when 6 rails6_action_view_instance end end let(:context_without_view_paths) do Class.new do include Chanko::Invoker def units @units ||= [] end end.new end let(:options) do { :type => :plain } end describe ".invoke" do it "invokes block with given context and stacked unit" do expect(described_class.new(unit, :label) { current_unit }.invoke(context, options)).to eq(unit) end context "when context is a view" do it "invokes with unit's view path" do expect(described_class.new(unit, :label) { path }.invoke(context, options)).to eq(unit.view_path) end end context "when context does not have view_paths" do it "invokes successfully" do expect(described_class.new(unit, :label) { "test" }. invoke(context_without_view_paths, options)).to eq("test") end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chanko-2.3.0 | spec/chanko/function_spec.rb |