From b549366216f6cb607bf06c19701912a2e0d1f77c Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Tue, 17 Jul 2007 09:44:03 +0000 Subject: 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 --- actionpack/test/controller/fake_models.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 actionpack/test/controller/fake_models.rb (limited to 'actionpack/test/controller/fake_models.rb') diff --git a/actionpack/test/controller/fake_models.rb b/actionpack/test/controller/fake_models.rb new file mode 100644 index 0000000000..2761b09f2f --- /dev/null +++ b/actionpack/test/controller/fake_models.rb @@ -0,0 +1,5 @@ +class Customer < Struct.new(:name, :id) + def to_param + id.to_s + end +end -- cgit v1.2.3