<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.gitignore</filename>
    </added>
    <added>
      <filename>Rakefile</filename>
    </added>
    <added>
      <filename>features/acceptance_test.feature</filename>
    </added>
    <added>
      <filename>features/step_definitions/acceptance_test_steps.rb</filename>
    </added>
    <added>
      <filename>features/support/env.rb</filename>
    </added>
    <added>
      <filename>spec/application_launcher_spec.rb</filename>
    </added>
    <added>
      <filename>spec/spec.opts</filename>
    </added>
    <added>
      <filename>spec/spec_helper.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,15 +1,5 @@
 class TestLauncher &lt; Test::Unit::TestCase
 
-  def test_application_under_test_is_not_defined
-    begin
-      Nobbie::Wx::ApplicationLauncher.module_eval('def get_application; raise NameError.new; end;')
-      Nobbie::Wx::ApplicationLauncher.new
-      fail
-    rescue RuntimeError =&gt; e
-      assert_equal Nobbie::Wx::ApplicationLauncher::AUT_NOT_DEFINED, e.message
-    end
-  end
-
   def test_application_under_test_is_not_a_wx_app
     begin
       Nobbie::Wx::ApplicationLauncher.new(&quot;this is not a Wx::App&quot;)
@@ -18,4 +8,5 @@ class TestLauncher &lt; Test::Unit::TestCase
       assert_equal Nobbie::Wx::ApplicationLauncher::AUT_NOT_WX_APP, e.message
     end
   end
+
 end</diff>
      <filename>test/suite/test_launcher.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,15 +1,55 @@
-# -*- encoding: utf-8 -*-
+# -*- ruby -*-
 
 Gem::Specification.new do |s|
   s.name = %q{wx-nobbie}
-  s.version = &quot;0.0.3.4&quot;
+  s.version = &quot;0.0.3.5&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Paul Alton&quot;, &quot;Bryan Ash&quot;]
   s.date = %q{2009-02-08}
   s.description = %q{wx-Nobbie is a simple interface for driving wxRuby application development.}
   s.email = %q{bryan.a.ash@gmail.com}
-  s.files = [&quot;KNOWN_ISSUES&quot;, &quot;README.txt&quot;, &quot;lib/nobbie/wx/acceptance_test.rb&quot;, &quot;lib/nobbie/wx/command.rb&quot;, &quot;lib/nobbie/wx/command_executor.rb&quot;, &quot;lib/nobbie/wx/command_factory.rb&quot;, &quot;lib/nobbie/wx/driven.rb&quot;, &quot;lib/nobbie/wx/launcher.rb&quot;, &quot;lib/nobbie/wx/operations.rb&quot;, &quot;lib/nobbie/wx/platform.rb&quot;, &quot;lib/nobbie/wx/command/choose.rb&quot;, &quot;lib/nobbie/wx/command/click_on.rb&quot;, &quot;lib/nobbie/wx/command/get_component.rb&quot;, &quot;lib/nobbie/wx/command/get_options.rb&quot;, &quot;lib/nobbie/wx/command/get_selected_values.rb&quot;, &quot;lib/nobbie/wx/command/is_chosen.rb&quot;, &quot;lib/nobbie/wx/command/is_enabled.rb&quot;, &quot;lib/nobbie/wx/command/select.rb&quot;, &quot;lib/nobbie/wx/command/type_into.rb&quot;, &quot;lib/nobbie/wx/impl/element/element_path_builder.rb&quot;, &quot;lib/nobbie/wx/impl/operation/choosable.rb&quot;, &quot;lib/nobbie/wx/impl/operation/select.rb&quot;, &quot;test/all_tests.rb&quot;, &quot;test/suite/app.rb&quot;, &quot;test/suite/nobbie_test_case.rb&quot;, &quot;test/suite/test_choose.rb&quot;, &quot;test/suite/test_click.rb&quot;, &quot;test/suite/test_enabled.rb&quot;, &quot;test/suite/test_launcher.rb&quot;, &quot;test/suite/test_operations.rb&quot;, &quot;test/suite/test_selection.rb&quot;, &quot;test/suite/test_type.rb&quot;]
+  s.files =
+    [ &quot;KNOWN_ISSUES&quot;,
+      &quot;README.txt&quot;,
+      &quot;lib/nobbie/wx/acceptance_test.rb&quot;,
+      &quot;lib/nobbie/wx/application_launcher.rb&quot;,
+      &quot;lib/nobbie/wx/command.rb&quot;,
+      &quot;lib/nobbie/wx/command_executor.rb&quot;,
+      &quot;lib/nobbie/wx/command_factory.rb&quot;,
+      &quot;lib/nobbie/wx/driven.rb&quot;,
+      &quot;lib/nobbie/wx/operations.rb&quot;,
+      &quot;lib/nobbie/wx/platform.rb&quot;,
+      &quot;lib/nobbie/wx/command/choose.rb&quot;,
+      &quot;lib/nobbie/wx/command/click_on.rb&quot;,
+      &quot;lib/nobbie/wx/command/get_component.rb&quot;,
+      &quot;lib/nobbie/wx/command/get_options.rb&quot;,
+      &quot;lib/nobbie/wx/command/get_selected_values.rb&quot;,
+      &quot;lib/nobbie/wx/command/is_chosen.rb&quot;,
+      &quot;lib/nobbie/wx/command/is_enabled.rb&quot;,
+      &quot;lib/nobbie/wx/command/select.rb&quot;,
+      &quot;lib/nobbie/wx/command/type_into.rb&quot;,
+      &quot;lib/nobbie/wx/impl/element/element_path_builder.rb&quot;,
+      &quot;lib/nobbie/wx/impl/operation/choosable.rb&quot;,
+      &quot;lib/nobbie/wx/impl/operation/select.rb&quot;,
+      &quot;features/step_definitions&quot;,
+      &quot;features/support&quot;,
+      &quot;features/acceptance_test.feature&quot;,
+      &quot;features/step_definitions/acceptance_test_steps.rb&quot;,
+      &quot;features/support/env.rb&quot;,
+      &quot;spec/application_launcher_spec.rb&quot;,
+      &quot;spec/spec.opts&quot;,
+      &quot;spec/spec_helper.rb&quot;,
+      &quot;test/all_tests.rb&quot;,
+      &quot;test/suite/example_app.rb&quot;,
+      &quot;test/suite/nobbie_test_case.rb&quot;,
+      &quot;test/suite/test_choose.rb&quot;,
+      &quot;test/suite/test_click.rb&quot;,
+      &quot;test/suite/test_enabled.rb&quot;,
+      &quot;test/suite/test_launcher.rb&quot;,
+      &quot;test/suite/test_operations.rb&quot;,
+      &quot;test/suite/test_selection.rb&quot;,
+      &quot;test/suite/test_type.rb&quot;]
   s.has_rdoc = true
   s.homepage = %q{http://github.com/bryan-ash/wx-nobbie}
   s.rdoc_options = [&quot;--main&quot;, &quot;README.txt&quot;, &quot;--inline-source&quot;, &quot;--charset=UTF-8&quot;]</diff>
      <filename>wx-nobbie.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e66f3d707117cf526befa3f7dc46c25dc37cf6c1</id>
    </parent>
  </parents>
  <author>
    <name>Bryan Ash</name>
    <email>bryan.a.ash@gmail.com</email>
  </author>
  <url>http://github.com/bryan-ash/wx-nobbie/commit/732fe4be8a29cd13eb054de3d69fa192234ceb96</url>
  <id>732fe4be8a29cd13eb054de3d69fa192234ceb96</id>
  <committed-date>2009-02-12T20:42:39-08:00</committed-date>
  <authored-date>2009-02-12T20:42:39-08:00</authored-date>
  <message>Added first Cucumber feature and Rspec example.  Removed unnecessary ApplicationLauncher test</message>
  <tree>f0a0c6b7bdeff1c24f0ae1099b6a9a0d25c6acfc</tree>
  <committer>
    <name>Bryan Ash</name>
    <email>bryan.a.ash@gmail.com</email>
  </committer>
</commit>
