Sha256: 14606a7fcc843f8510c623a3c269a6096e50ceb50a40fdb12630a23852f92c9a
Contents?: true
Size: 392 Bytes
Versions: 5
Compression:
Stored size: 392 Bytes
Contents
require File.expand_path('../../helper', __FILE__) class BuildOptionsTest < TestCase setup do @path = fixture('build_options') @project = Project.new(@path) Dir.chdir @path end test "yada" do raw = Page['/style.css'].to_html built = Page['/style.css'].to_html({}, :build => true) assert !built.include?("line 1") assert raw.include?("line 1") end end
Version data entries
5 entries across 5 versions & 1 rubygems