Sha256: a97422399813a8d8d2d31e716ecaa187a837ac9a196a01c9956162dc6b34d348
Contents?: true
Size: 1.8 KB
Versions: 2
Compression:
Stored size: 1.8 KB
Contents
require 'rspec/core' require 'rspec/mocks' require 'rspec/autorun' require "pry" require "slim" require "erb" require "erubis" require "haml" require "liquid" require "open-uri" require "base64" require 'pp' if ENV['COVERAGE'] require "simplecov" SimpleCov.start do coverage_dir '.coverage' add_group 'lib', 'lib' end end require_relative "../lib/nyara/nyara" require_relative "../lib/nyara/test" require_relative "../lib/nyara/command" def capture(stream) stream = stream.to_s captured_stream = Tempfile.new(stream) stream_io = eval("$#{stream}") origin_stream = stream_io.dup stream_io.reopen(captured_stream) yield stream_io.rewind return captured_stream.read ensure captured_stream.unlink stream_io.reopen(origin_stream) end RSpec.configure do |config| config.expect_with :stdlib if config.formatters.first.class.to_s =~ /TextMate/ def puts *xs xs.each do |x| $stdout.puts "<pre style='word-wrap:break-word;word-break:break-all;'>#{CGI.escape_html x.to_s}</pre>" end nil end def print *xs $stdout.print "<span style='word-wrap:break-word;word-break:break-all;'>" xs.each do |x| $stdout.print CGI.escape_html x.to_s end $stdout.print "</span>" nil end def p *xs xs.each do |x| $stdout.puts "<pre style='word-wrap:break-word;word-break:break-all;'>#{CGI.escape_html x.inspect}</pre>" end xs end module Kernel def pp obj s = CGI.escape_html(PP.pp obj, '') $stdout.puts "<pre style='word-wrap:break-word;word-break:break-all;'>#{s}</pre>" obj end end end if ENV['STRESS'] puts "Enabling GC.stress mode" config.before :each do GC.stress = true end config.after :each do GC.stress = false end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nyara-0.1.pre.2 | spec/spec_helper.rb |
nyara-0.1.pre.1 | spec/spec_helper.rb |