Sha256: eede008ef763175c9535d3a8bec8933d98f53b31b5a298ce5120cc617df5c934
Contents?: true
Size: 1.4 KB
Versions: 2
Compression:
Stored size: 1.4 KB
Contents
require "spec_helper" describe Alephant::Renderer do let(:config) { { :renderer_id => "foo-renderer", :view_path => File.join(File.dirname(__FILE__), "fixtures/components"), } } let(:data) { { :content => "test" } } describe ".create" do context "using valid params" do let(:expected) { Alephant::Renderer::Renderer } specify do expect(subject.create(config, data)).to be_instance_of expected end end end describe Alephant::Renderer::Renderer do subject { Alephant::Renderer::Renderer.new(config, data) } describe "#config" do specify { expect(subject.config).to eql config } end describe "#data" do specify { expect(subject.data).to eql data } end describe "#views" do it "returns a Hash" do expect(subject.views).to be_a Hash end context "using three Models" do it "returns three Views in Hash" do expect(subject.views.length).to eql 3 end end context "using `bar`, `foo`, `json` models" do it "contains a View for `bar` model" do expect(subject.views.key? "BAR_ABC").to be end it "contains a View for `foo` model" do expect(subject.views.key? "foo_xyz").to be end it "contains a View for `json` model" do expect(subject.views.key? "json").to be end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alephant-renderer-3.0.0 | spec/renderer_spec.rb |
alephant-renderer-2.0.3 | spec/renderer_spec.rb |