From a68ffa731eaa72f37f5b9ba14359c7b2f447fcbf Mon Sep 17 00:00:00 2001 From: Ronak Jangir Date: Thu, 4 Jun 2015 01:41:16 +0530 Subject: Removed duplicate test cases for template execution --- railties/test/generators/shared_generator_tests.rb | 9 --------- 1 file changed, 9 deletions(-) (limited to 'railties') diff --git a/railties/test/generators/shared_generator_tests.rb b/railties/test/generators/shared_generator_tests.rb index 3a2195035f..f983b45d2b 100644 --- a/railties/test/generators/shared_generator_tests.rb +++ b/railties/test/generators/shared_generator_tests.rb @@ -86,15 +86,6 @@ module SharedGeneratorTests end end - def test_template_is_executed_when_supplied - path = "https://gist.github.com/josevalim/103208/raw/" - template = %{ say "It works!" } - template.instance_eval "def read; self; end" # Make the string respond to read - - generator([destination_root], template: path).expects(:open).with(path, 'Accept' => 'application/x-thor-template').returns(template) - quietly { assert_match(/It works!/, capture(:stdout) { generator.invoke_all }) } - end - def test_template_is_executed_when_supplied_an_https_path path = "https://gist.github.com/josevalim/103208/raw/" template = %{ say "It works!" } -- cgit v1.2.3