Sha256: 157ea8cb3beda694f13edfa91bbd2454e989f6716cd9f06cecb72acfe3b55912
Contents?: true
Size: 393 Bytes
Versions: 10
Compression:
Stored size: 393 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
10 entries across 10 versions & 2 rubygems