aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/generators
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-09-25 13:19:27 +0200
committerJosé Valim <jose.valim@gmail.com>2010-09-25 17:28:10 +0200
commit49c3ad7f7782274504fbe0818b9636d2b362a1a3 (patch)
treeb19530b21d45bcd298bb7147cfae0fda03156b27 /railties/test/generators
parent51f1f550dab47c6ec3dcdba7b153258e2a0feb69 (diff)
downloadrails-49c3ad7f7782274504fbe0818b9636d2b362a1a3.tar.gz
rails-49c3ad7f7782274504fbe0818b9636d2b362a1a3.tar.bz2
rails-49c3ad7f7782274504fbe0818b9636d2b362a1a3.zip
Add namespace for test_unit generators
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'railties/test/generators')
-rw-r--r--railties/test/generators/namespaced_generators_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/test/generators/namespaced_generators_test.rb b/railties/test/generators/namespaced_generators_test.rb
index a4e93a4ecc..4c85250e2c 100644
--- a/railties/test/generators/namespaced_generators_test.rb
+++ b/railties/test/generators/namespaced_generators_test.rb
@@ -26,7 +26,7 @@ class NamespacedControllerGeneratorTest < NamespacedGeneratorTestCase
def test_namespaced_controller_skeleton_is_created
run_generator
assert_file "app/controllers/test_app/account_controller.rb", /module TestApp/, / class AccountController < ApplicationController/
- assert_file "test/functional/test_app/account_controller_test.rb", /TestApp::AccountController/
+ assert_file "test/functional/test_app/account_controller_test.rb", /module TestApp/, / class AccountControllerTest/
end
def test_skipping_namespace
@@ -43,7 +43,7 @@ class NamespacedControllerGeneratorTest < NamespacedGeneratorTestCase
def test_helpr_is_also_namespaced
run_generator
assert_file "app/helpers/test_app/account_helper.rb", /module TestApp/, / module AccountHelper/
- assert_file "test/unit/helpers/test_app/account_helper_test.rb", /TestApp::AccountHelper/
+ assert_file "test/unit/helpers/test_app/account_helper_test.rb", /module TestApp/, / class AccountHelperTest/
end
def test_invokes_default_test_framework
@@ -124,7 +124,7 @@ class NamespacedModelGeneratorTest < NamespacedGeneratorTestCase
def test_invokes_default_test_framework
run_generator
- assert_file "test/unit/test_app/account_test.rb", /class TestApp::AccountTest < ActiveSupport::TestCase/
+ assert_file "test/unit/test_app/account_test.rb", /module TestApp/, /class AccountTest < ActiveSupport::TestCase/
assert_file "test/fixtures/test_app/accounts.yml", /name: MyString/, /age: 1/
end
end