From 55d87d2b5c2d9176752ef62eaf0e8ef2e37ca52c Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Fri, 13 May 2011 00:06:38 +0200 Subject: removes duplicate tests --- railties/test/generators/shared_generator_tests.rb | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'railties/test/generators/shared_generator_tests.rb') diff --git a/railties/test/generators/shared_generator_tests.rb b/railties/test/generators/shared_generator_tests.rb index 03fd64ca38..3fcf75883c 100644 --- a/railties/test/generators/shared_generator_tests.rb +++ b/railties/test/generators/shared_generator_tests.rb @@ -87,19 +87,6 @@ module SharedGeneratorTests assert_match(/It works!/, silence(:stdout){ generator.invoke_all }) end - def test_dev_option - generator([destination_root], :dev => true).expects(:run).with("#{@bundle_command} install") - silence(:stdout){ generator.invoke_all } - rails_path = File.expand_path('../../..', Rails.root) - assert_file 'Gemfile', /^gem\s+["']rails["'],\s+:path\s+=>\s+["']#{Regexp.escape(rails_path)}["']$/ - end - - def test_edge_option - generator([destination_root], :edge => true).expects(:run).with("#{@bundle_command} install") - silence(:stdout){ generator.invoke_all } - assert_file 'Gemfile', %r{^gem\s+["']rails["'],\s+:git\s+=>\s+["']#{Regexp.escape("git://github.com/rails/rails.git")}["']$} - end - def test_template_raises_an_error_with_invalid_path content = capture(:stderr){ run_generator([destination_root, "-m", "non/existant/path"]) } assert_match(/The template \[.*\] could not be loaded/, content) -- cgit v1.2.3