Sha256: 2097752e238129a39e9bf590bffd7eeefb594d7016e2da4da9d49dc2d3356000
Contents?: true
Size: 1.4 KB
Versions: 2
Compression:
Stored size: 1.4 KB
Contents
require 'jellyfish/test' require 'uri' require 'stringio' describe 'from README.md' do after do [:Tank, :Heater, :Protector].each do |const| Object.send(:remove_const, const) if Object.const_defined?(const) end Muack.verify end readme = File.read( "#{File.dirname(File.expand_path(__FILE__))}/../README.md") codes = readme.scan( /### ([^\n]+).+?``` ruby\n(.+?)\n```\n\n<!---(.+?)-->/m) codes.each.with_index do |(title, code, test), index| next if title =~ /NewRelic/i would "pass from README.md #%02d #{title}" % index do method_path, expect = test.strip.split("\n", 2) method, path = method_path.split(' ') uri = URI.parse(path) pinfo, query = uri.path, uri.query sock = nil status, headers, body = File.open(File::NULL) do |input| Rack::Builder.app{ eval(code) }.call( 'REQUEST_METHOD' => method, 'PATH_INFO' => pinfo, 'QUERY_STRING' => query , 'SCRIPT_NAME'=> '' , 'rack.input' => input , 'rack.hijack' => lambda{ sock = StringIO.new # or TypeError: no implicit conversion of StringIO into IO mock(IO).select([sock]){ [[sock], [], []] } sock }) end body.extend(Enumerable) [status, headers, body.to_a].should.eq eval(expect, binding, __FILE__) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jellyfish-1.0.2 | test/test_from_readme.rb |
jellyfish-1.0.1 | test/test_from_readme.rb |