aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_render_test.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-07-17 09:44:03 +0000
committerMichael Koziarski <michael@koziarski.com>2007-07-17 09:44:03 +0000
commitb549366216f6cb607bf06c19701912a2e0d1f77c (patch)
tree1500622d360a50c98396347fd4e54db8ebba4d39 /actionpack/test/controller/new_render_test.rb
parent872c5f4380ca348ff9ed19963e827289fb831fdf (diff)
downloadrails-b549366216f6cb607bf06c19701912a2e0d1f77c.tar.gz
rails-b549366216f6cb607bf06c19701912a2e0d1f77c.tar.bz2
rails-b549366216f6cb607bf06c19701912a2e0d1f77c.zip
Introduce fake_models.rb to avoid platform-specific code. [mpalmer] Closes #8714
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7190 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller/new_render_test.rb')
-rw-r--r--actionpack/test/controller/new_render_test.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/actionpack/test/controller/new_render_test.rb b/actionpack/test/controller/new_render_test.rb
index 4f2b062fa2..b1069ca820 100644
--- a/actionpack/test/controller/new_render_test.rb
+++ b/actionpack/test/controller/new_render_test.rb
@@ -1,10 +1,5 @@
require File.dirname(__FILE__) + '/../abstract_unit'
-
-class Customer < Struct.new(:name, :id)
- def to_param
- id.to_s
- end
-end
+require File.dirname(__FILE__) + '/fake_models'
class CustomersController < ActionController::Base
end