mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix build for railties generators
This commit is contained in:
parent
a03da41906
commit
1cfa34f83e
2 changed files with 3 additions and 3 deletions
|
@ -246,7 +246,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
|
|||
if defined?(JRUBY_VERSION)
|
||||
assert_file "Gemfile", /gem\s+["']therubyrhino["']$/
|
||||
else
|
||||
assert_file "Gemfile", /# gem\s+["']therubyracer["']+, :platform => :ruby$/
|
||||
assert_file "Gemfile", /# gem\s+["']therubyracer["']+, platform: :ruby$/
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -104,13 +104,13 @@ module SharedGeneratorTests
|
|||
generator([destination_root], :dev => true).expects(:bundle_command).with('install').once
|
||||
quietly { generator.invoke_all }
|
||||
rails_path = File.expand_path('../../..', Rails.root)
|
||||
assert_file 'Gemfile', /^gem\s+["']rails["'],\s+:path\s+:\s+["']#{Regexp.escape(rails_path)}["']$/
|
||||
assert_file 'Gemfile', /^gem\s+["']rails["'],\s+path:\s+["']#{Regexp.escape(rails_path)}["']$/
|
||||
end
|
||||
|
||||
def test_edge_option
|
||||
generator([destination_root], :edge => true).expects(:bundle_command).with('install').once
|
||||
quietly { generator.invoke_all }
|
||||
assert_file 'Gemfile', %r{^gem\s+["']rails["'],\s+:github\s+:\s+["']#{Regexp.escape("rails/rails")}["']$}
|
||||
assert_file 'Gemfile', %r{^gem\s+["']rails["'],\s+github:\s+["']#{Regexp.escape("rails/rails")}["']$}
|
||||
end
|
||||
|
||||
def test_skip_gemfile
|
||||
|
|
Loading…
Reference in a new issue