Sha256: 6dd657cbdc4710e479268f758656a7daeaf37cb82c09a516e3eec28899476fe1
Contents?: true
Size: 1.34 KB
Versions: 2
Compression:
Stored size: 1.34 KB
Contents
require File.expand_path("#{File.dirname(__FILE__)}/../unit_spec_helper") module JsSpec describe RailsServer do it "subclasses Server" do RailsServer.superclass.should == Server end describe ".run" do attr_reader :rails_root before do @rails_root = "/rails/root" Server.instance = nil end it "initializes the RailsServer and runs the Thin Handler and sets Server.instance to the RailsServer instance" do host = DEFAULT_HOST port = DEFAULT_PORT server_instance = nil mock.proxy(RailsServer).new( rails_root, host, port ) do |new_instance| server_instance = new_instance end mock(EventMachine).run.yields mock(EventMachine).start_server(host, port, ::Thin::JsSpecConnection) RailsServer.run(rails_root) Server.instance.should == server_instance end end describe "#initialize" do it "sets the server paths based on the passed in rails root" do rails_root = "/rails/root" server = RailsServer.new(rails_root) server.spec_root_path.should == "#{rails_root}/spec/javascripts" server.implementation_root_path.should == "#{rails_root}/public/javascripts" server.public_path.should == "#{rails_root}/public" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
js_spec-0.2.0 | spec/unit/js_spec/rails_server_spec.rb |
js_spec-0.2.1 | spec/unit/js_spec/rails_server_spec.rb |