1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
therubyrhino/spec/spec_helper.rb
kares cd93c2b422 run specs with (tagged) redjs master
but exclude unsupported features - 0.5.0, 0.6.0
2012-05-18 16:47:12 +02:00

14 lines
212 B
Ruby

require 'rhino'
require 'mocha'
require 'redjs'
module RedJS
Context = Rhino::Context
Error = Rhino::JSError
end
RSpec.configure do |config|
config.filter_run_excluding :compat => /(0.5.0)|(0.6.0)/
end