<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -4,12 +4,12 @@ module Johnson
   module Conversions
     class ThreadTest &lt; Johnson::TestCase
       def setup
-        @context = Johnson::Context.new
+        @runtime = Johnson::Runtime.new
       end
 
       def test_manipulate_thread
         thread = Thread.new { }
-        @context['thread'] = thread
+        @runtime['thread'] = thread
         assert_js_equal(false, &quot;thread.send('alive?')&quot;)
       end
     end</diff>
      <filename>test/johnson/conversions/thread_test.rb</filename>
    </modified>
    <modified>
      <diff>@@ -4,18 +4,18 @@ module Johnson
   module Extensions
     class DefinePropertyTest &lt; Johnson::TestCase
       def setup
-        @context = Johnson::Context.new
-        @context.evaluate(&quot;x = {}&quot;)
+        @runtime = Johnson::Runtime.new
+        @runtime.evaluate(&quot;x = {}&quot;)
       end      
       
       def test_object_can_define_property
-        @context.evaluate(&quot;Object.defineProperty(x, 'answer', 42)&quot;)
+        @runtime.evaluate(&quot;Object.defineProperty(x, 'answer', 42)&quot;)
         assert_js_equal(42, &quot;x.answer&quot;)
       end
       
       def test_object_can_define_unenumerable_property
-        @context.evaluate(&quot;Object.defineProperty(x, 'answer', 42)&quot;)
-        @context.evaluate &lt;&lt;-JS
+        @runtime.evaluate(&quot;Object.defineProperty(x, 'answer', 42)&quot;)
+        @runtime.evaluate &lt;&lt;-JS
           y = [];
           for(prop in x) if(prop == &quot;answer&quot;) y.push(prop)
         JS
@@ -23,8 +23,8 @@ module Johnson
       end
       
       def test_object_can_define_enumerable_property
-        @context.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.ITERABLE)&quot;)
-        @context.evaluate &lt;&lt;-JS
+        @runtime.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.ITERABLE)&quot;)
+        @runtime.evaluate &lt;&lt;-JS
           y = [];
           for(prop in x) if(prop == &quot;answer&quot;) y.push(prop)
         JS
@@ -32,22 +32,22 @@ module Johnson
       end
       
       def test_object_can_define_read_only_property
-        @context.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.READ_ONLY)&quot;)
-        @context.evaluate(&quot;x.answer = 47&quot;)
+        @runtime.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.READ_ONLY)&quot;)
+        @runtime.evaluate(&quot;x.answer = 47&quot;)
         assert_js_equal(42, &quot;x.answer&quot;)
       end
       
       def test_object_can_define_non_deletable_property
-        @context.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.NON_DELETABLE)&quot;)
-        @context.evaluate(&quot;r = (delete x.answer)&quot;)
+        @runtime.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.NON_DELETABLE)&quot;)
+        @runtime.evaluate(&quot;r = (delete x.answer)&quot;)
         assert_js_equal(false, &quot;r&quot;)
         assert_js_equal(42, &quot;x.answer&quot;)
       end
       
       def test_object_can_define_mixed_property
-        @context.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.NON_DELETABLE | Object.READ_ONLY)&quot;)
-        @context.evaluate(&quot;r = (delete x.answer)&quot;)
-        @context.evaluate(&quot;x.answer = 47&quot;)
+        @runtime.evaluate(&quot;Object.defineProperty(x, 'answer', 42, Object.NON_DELETABLE | Object.READ_ONLY)&quot;)
+        @runtime.evaluate(&quot;r = (delete x.answer)&quot;)
+        @runtime.evaluate(&quot;x.answer = 47&quot;)
         assert_js_equal(false, &quot;r&quot;)
         assert_js_equal(42, &quot;x.answer&quot;)
       end      </diff>
      <filename>test/johnson/extensions_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>41f0d9c7734080e6ce05f156eaaaf08e01707c14</id>
    </parent>
  </parents>
  <author>
    <name>Aaron Patterson</name>
    <email>aaron.patterson@gmail.com</email>
  </author>
  <url>http://github.com/jbarnette/johnson/commit/4507bf52e909971dd1184256e0cfba3429ac3d3a</url>
  <id>4507bf52e909971dd1184256e0cfba3429ac3d3a</id>
  <committed-date>2008-05-30T16:54:20-07:00</committed-date>
  <authored-date>2008-05-30T16:54:20-07:00</authored-date>
  <message>making more shit work</message>
  <tree>f2deeaf1fdb762533dd53d6e253d10627d751c89</tree>
  <committer>
    <name>Aaron Patterson</name>
    <email>aaron.patterson@gmail.com</email>
  </committer>
</commit>
