mispelling errors in render_text_test.rb and sqlite_specific_schema

This commit is contained in:
angelo giovanni capilleri 2012-05-12 13:12:15 +02:00
parent 667d0bdd90
commit 47570d4f1f
2 changed files with 3 additions and 3 deletions

View File

@ -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' }

View File

@ -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