Sha256: fdc2c742050b3a0b1f5ebb31f9ec6f6bcb024d773d3292cdcd4e095d472ed4f2
Contents?: true
Size: 887 Bytes
Versions: 1
Compression:
Stored size: 887 Bytes
Contents
require 'bundler/setup' def start_process(command) Process.detach fork { exec command } end def run_cucumber(feature = '') system "cd spec/test_project && cucumber features/#{feature} --format cuukie" end require 'rest-client' [:GET, :POST, :PUT, :DELETE].each do |method| Kernel.send :define_method, method do |*args| args[0] = "http://localhost:4569#{args[0]}" RestClient.send method.to_s.downcase, *args end end def html GET('/').body end def start_server start_process "ruby bin/cuukie_server >/dev/null 2>&1" wait_for_server_on_port 4569 end def wait_for_server_on_port(port) loop do begin RestClient.get "http://localhost:#{port}/ping" return rescue; end end end def stop_server_on_port(port) # the server dies without replying, so we expect an error here RestClient.delete "http://localhost:#{port}/" rescue end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cuukie-0.1.4 | spec/spec_helper.rb |