diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-10-22 14:34:05 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-10-22 14:34:05 -0500 |
commit | a458833705cd3e9a0909d0710da84e2009f097ba (patch) | |
tree | 16c0d30305f696c5a9322bd5134c7d7ff69f559e /railties/test | |
parent | c33090523c3504a2a125d7f725a7f2a4b99ff3c0 (diff) | |
download | rails-a458833705cd3e9a0909d0710da84e2009f097ba.tar.gz rails-a458833705cd3e9a0909d0710da84e2009f097ba.tar.bz2 rails-a458833705cd3e9a0909d0710da84e2009f097ba.zip |
Remove Turn from default Gemfile.
We still looking for a best presentation for tests output.
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/app_generator_test.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb index 133efb872f..4b74bd6a4b 100644 --- a/railties/test/generators/app_generator_test.rb +++ b/railties/test/generators/app_generator_test.rb @@ -242,21 +242,6 @@ class AppGeneratorTest < Rails::Generators::TestCase end end - def test_inclusion_of_turn_gem_in_gemfile - run_generator - assert_file "Gemfile" do |contents| - assert_match(/gem 'turn'/, contents) unless RUBY_VERSION < '1.9.2' - assert_no_match(/gem 'turn'/, contents) if RUBY_VERSION < '1.9.2' - end - end - - def test_turn_gem_is_not_included_in_gemfile_if_skipping_test_unit - run_generator [destination_root, "--skip-test-unit"] - assert_file "Gemfile" do |contents| - assert_no_match(/gem 'turn'/, contents) unless RUBY_VERSION < '1.9.2' - end - end - def test_inclusion_of_ruby_debug run_generator assert_file "Gemfile" do |contents| |