require 'spec_helper' describe 'Element#prepend' do html <<-HTML

Something

HTML it 'inserts the given html to beginning of element' do foo = Element.find '#foo' bar = Element.find '#bar' foo.prepend 'Bore Da' expect(foo.children.first.text).to eq 'Bore Da' bar.prepend 'Charlie' expect(bar.children.first.text).to eq 'Charlie' end end