require File.expand_path(File.dirname(__FILE__) + '/spec_helper') require 'css_selector' describe "CssSelector" do it "get title" do html = 'foo

bar

' selector = 'title' CssSelector(html, selector).should == 'foo' end it "get h1" do html = 'foo

bar

' selector = 'h1' CssSelector(html, selector).should == 'bar' end end