From 5cef8bcc549bf714c1c73e658fd96d5fea0fab84 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 30 Apr 2008 15:00:59 -0500 Subject: Forgot these --- actionpack/test/fixtures/mascot.rb | 3 +++ actionpack/test/fixtures/mascots.yml | 4 ++++ actionpack/test/fixtures/mascots/_mascot.html.erb | 1 + 3 files changed, 8 insertions(+) create mode 100644 actionpack/test/fixtures/mascot.rb create mode 100644 actionpack/test/fixtures/mascots.yml create mode 100644 actionpack/test/fixtures/mascots/_mascot.html.erb (limited to 'actionpack/test/fixtures') diff --git a/actionpack/test/fixtures/mascot.rb b/actionpack/test/fixtures/mascot.rb new file mode 100644 index 0000000000..f9f1448b8f --- /dev/null +++ b/actionpack/test/fixtures/mascot.rb @@ -0,0 +1,3 @@ +class Mascot < ActiveRecord::Base + belongs_to :company +end \ No newline at end of file diff --git a/actionpack/test/fixtures/mascots.yml b/actionpack/test/fixtures/mascots.yml new file mode 100644 index 0000000000..17b7dff454 --- /dev/null +++ b/actionpack/test/fixtures/mascots.yml @@ -0,0 +1,4 @@ +upload_bird: + id: 1 + company_id: 1 + name: The Upload Bird \ No newline at end of file diff --git a/actionpack/test/fixtures/mascots/_mascot.html.erb b/actionpack/test/fixtures/mascots/_mascot.html.erb new file mode 100644 index 0000000000..432773a1da --- /dev/null +++ b/actionpack/test/fixtures/mascots/_mascot.html.erb @@ -0,0 +1 @@ +<%= mascot.name %> \ No newline at end of file -- cgit v1.2.3