Sha256: 578e3dbe282b0ea9e57bcd451ddc2041f0f2b285b6033c9e88274af48e353db3
Contents?: true
Size: 589 Bytes
Versions: 10
Compression:
Stored size: 589 Bytes
Contents
require File.expand_path(File.join(File.dirname(__FILE__), "/../../helper")) module Johnson module TraceMonkey class ContextTest < Johnson::TestCase def setup @runtime = Johnson::Runtime.new(Johnson::TraceMonkey::Runtime) end def test_wraps_global_unfuckedly assert_same(@runtime.global, @runtime.evaluate("this")) end def test_provides_basic_runtime_interface assert(@runtime.respond_to?(:evaluate)) assert(@runtime.respond_to?(:[])) assert(@runtime.respond_to?(:[]=)) end end end end
Version data entries
10 entries across 10 versions & 4 rubygems