Sha256: afeddc8126ee396b801c44d31f50b3cecb554f0eb88b252fc0a66b705f170be1

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

require File.expand_path("#{File.dirname(__FILE__)}/../../unit_spec_helper")

module JsTestCore
  module Resources
    module Specs
      describe SpecFile do
        describe "GET /specs/failing_spec" do
          attr_reader :html, :doc
          before do
            mock(connection).send_head
            mock(connection).send_body(anything) do |@html|
              # do nothing
            end
            
            connection.receive_data("GET /specs/failing_spec HTTP/1.1\r\nHost: _\r\n\r\n")
            @doc = Hpricot(html)
          end

          it "returns script tags for the test javascript file" do
            doc.at("script[@src='/specs/failing_spec.js']").should exist
          end

          it "returns the screw unit template" do
            doc.at("link[@href='/core/screw.css']").should exist
            doc.at("script[@src='/core/screw.builder.js']").should exist
            doc.at("script[@src='/core/screw.events.js']").should exist
            doc.at("script[@src='/core/screw.behaviors.js']").should exist
            doc.at("script[@src='/core/screw.assets.js']").should exist
            doc.at("body/#screw_unit_content").should_not be_nil
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
screw-unit-0.3.1 spec/unit/js_test_core/specs/spec_file_spec.rb