Skip to content

Commit

Permalink
Fixed failing tests from flashsdk and sprouts update
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristofer Joseph committed Jan 6, 2011
1 parent a599875 commit 6fdcda9
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion lib/robotlegs/generators/command_generator.rb
Expand Up @@ -9,7 +9,7 @@ def manifest
end
end

unless no_test
if test_class
generator :test_class, :input => "#{fully_qualified_class_name}Test"
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/robotlegs/generators/context_generator.rb
Expand Up @@ -9,7 +9,7 @@ def manifest
end
end

unless no_test
if test_class
generator :test_class, :input => "#{fully_qualified_class_name}Test"
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/robotlegs/generators/mediator_generator.rb
Expand Up @@ -9,7 +9,7 @@ def manifest
end
end

unless no_test
if test_class
generator :test_class, :input => "#{fully_qualified_class_name}Test"
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/robotlegs/generators/proxy_generator.rb
Expand Up @@ -9,7 +9,7 @@ def manifest
end
end

unless no_test
if test_class
generator :test_class, :input => "#{fully_qualified_class_name}Test"
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/robotlegs/generators/service_generator.rb
Expand Up @@ -9,7 +9,7 @@ def manifest
end
end

unless no_test
if test_class
generator :test_class, :input => "#{fully_qualified_class_name}Test"
end
end
Expand Down
2 changes: 1 addition & 1 deletion test/unit/command_generator_test.rb
@@ -1,7 +1,7 @@
require 'test_helper'

class CommandGeneratorTest < Test::Unit::TestCase
include SproutTestCase
include Sprout::TestHelper

context "A new Command generator" do

Expand Down
3 changes: 2 additions & 1 deletion test/unit/context_generator_test.rb
@@ -1,7 +1,8 @@
require 'test_helper'

class ContextGeneratorTest < Test::Unit::TestCase
include SproutTestCase
include Sprout::TestHelper


context "A new Context generator" do

Expand Down
2 changes: 1 addition & 1 deletion test/unit/mediator_generator_test.rb
@@ -1,7 +1,7 @@
require 'test_helper'

class MediatorGeneratorTest < Test::Unit::TestCase
include SproutTestCase
include Sprout::TestHelper

context "A new Mediator generator" do

Expand Down
2 changes: 1 addition & 1 deletion test/unit/project_generator_test.rb
@@ -1,7 +1,7 @@
require 'test_helper'

class ProjectGeneratorTest < Test::Unit::TestCase
include SproutTestCase
include Sprout::TestHelper

context "A new Project generator" do

Expand Down
2 changes: 1 addition & 1 deletion test/unit/proxy_generator_test.rb
@@ -1,7 +1,7 @@
require 'test_helper'

class ProxyGeneratorTest < Test::Unit::TestCase
include SproutTestCase
include Sprout::TestHelper

context "A new Proxy generator" do

Expand Down
2 changes: 1 addition & 1 deletion test/unit/service_generator_test.rb
@@ -1,7 +1,7 @@
require 'test_helper'

class ServiceGeneratorTest < Test::Unit::TestCase
include SproutTestCase
include Sprout::TestHelper

context "A new Service generator" do

Expand Down
2 changes: 1 addition & 1 deletion test/unit/test_helper.rb
Expand Up @@ -15,4 +15,4 @@

require 'robotlegs'
require 'flashsdk'
require 'sprout/test/sprout_test_case'
require 'sprout/test_helper'

0 comments on commit 6fdcda9

Please sign in to comment.