Sha256: 9a3f465d27d82fb376a89a0699b45615040649f7d12702dd63fd70ecfc0374e0
Contents?: true
Size: 875 Bytes
Versions: 21
Compression:
Stored size: 875 Bytes
Contents
require 'spec_helper' describe Alchemy::Admin::EssencesHelper do before(:each) do @element = Factory(:element) @element.content_by_name('intro').essence.update_attributes(:body => 'hello!') end it "should render an essence editor" do content = @element.content_by_name('intro') render_essence_editor(content).should match(/input.+type="text".+value="hello!/) end it "should render an essence editor by name" do render_essence_editor_by_name(@element, 'intro').should match(/input.+type="text".+value="hello!/) end it "should render an essence editor by type" do render_essence_editor_by_type(@element, 'EssenceText').should match(/input.+type="text".+value="hello!/) end it "should render an essence editor by position" do render_essence_editor_by_position(@element, 1).should match(/input.+type="text".+value="hello!/) end end
Version data entries
21 entries across 21 versions & 1 rubygems