Sha256: f16a41d33632ee0f6f5fc192f7ac97053fd1293ff3ce7901c23a4caaf86bf635
Contents?: true
Size: 356 Bytes
Versions: 7
Compression:
Stored size: 356 Bytes
Contents
# -*- encoding: utf-8 -*- require './spec/helper' describe BuilderBase do before :each do test_file = %q{<body></body>} @doc = Nokogiri::XML.fragment test_file end it "should not be instanciated" do builder = BuilderBase.new(@doc) lambda {builder.build_for_page('index.html')}.should raise_error(NotImplementedError) end end
Version data entries
7 entries across 7 versions & 1 rubygems