module ScrewUnit
module Resources
module Spec
def get
# TODO: BT/JN - Remove the Screw.Assets when we implement rendering of script and link tags from yml files.
html = <<-HTML
ScrewUnit results
HTML
spec_files.each do |file|
html << %{\n}
end
html << <<-HTML
HTML
connection.send_head
connection.send_body(html.gsub(/^ /, ""))
end
end
end
end