mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #6281 from acapilleri/mispelling_errors_in_render_text_test
mispelling errors in render_text_test.rb
This commit is contained in:
commit
905c48eab3
2 changed files with 3 additions and 3 deletions
|
@ -65,7 +65,7 @@ module RenderText
|
|||
class RenderTextTest < Rack::TestCase
|
||||
describe "Rendering text using render :text"
|
||||
|
||||
test "rendering text from a action with default options renders the text with the layout" do
|
||||
test "rendering text from an action with default options renders the text with the layout" do
|
||||
with_routing do |set|
|
||||
set.draw { get ':controller', :action => 'index' }
|
||||
|
||||
|
@ -75,7 +75,7 @@ module RenderText
|
|||
end
|
||||
end
|
||||
|
||||
test "rendering text from a action with default options renders the text without the layout" do
|
||||
test "rendering text from an action with default options renders the text without the layout" do
|
||||
with_routing do |set|
|
||||
set.draw { get ':controller', :action => 'index' }
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
ActiveRecord::Schema.define do
|
||||
# For sqlite 3.1.0+, make a table with a autoincrement column
|
||||
# For sqlite 3.1.0+, make a table with an autoincrement column
|
||||
if supports_autoincrement?
|
||||
create_table :table_with_autoincrement, :force => true do |t|
|
||||
t.column :name, :string
|
||||
|
|
Loading…
Reference in a new issue