diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-07-12 12:15:31 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-07-12 12:17:10 -0500 |
commit | b603de08825eec05f1b97d0f5d71462f3fa4c222 (patch) | |
tree | eaf6573df78509a00607b5b96583011c2a1acb84 /actionpack/test/fixtures | |
parent | f90eb81c65d5841b591caf0f5e39ef774d02d06e (diff) | |
download | rails-b603de08825eec05f1b97d0f5d71462f3fa4c222.tar.gz rails-b603de08825eec05f1b97d0f5d71462f3fa4c222.tar.bz2 rails-b603de08825eec05f1b97d0f5d71462f3fa4c222.zip |
Improve test coverage and create fixtures for RenderPartialWithRecordIdentificationTests
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r-- | actionpack/test/fixtures/developers/_developer.erb | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/fun/games/_game.erb | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/fun/serious/games/_game.erb | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/projects/_project.erb | 1 | ||||
-rw-r--r-- | actionpack/test/fixtures/replies/_reply.erb | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/developers/_developer.erb b/actionpack/test/fixtures/developers/_developer.erb new file mode 100644 index 0000000000..904a3137e7 --- /dev/null +++ b/actionpack/test/fixtures/developers/_developer.erb @@ -0,0 +1 @@ +<%= developer.name %>
\ No newline at end of file diff --git a/actionpack/test/fixtures/fun/games/_game.erb b/actionpack/test/fixtures/fun/games/_game.erb new file mode 100644 index 0000000000..d51b7b3ebc --- /dev/null +++ b/actionpack/test/fixtures/fun/games/_game.erb @@ -0,0 +1 @@ +<%= game.name %>
\ No newline at end of file diff --git a/actionpack/test/fixtures/fun/serious/games/_game.erb b/actionpack/test/fixtures/fun/serious/games/_game.erb new file mode 100644 index 0000000000..d51b7b3ebc --- /dev/null +++ b/actionpack/test/fixtures/fun/serious/games/_game.erb @@ -0,0 +1 @@ +<%= game.name %>
\ No newline at end of file diff --git a/actionpack/test/fixtures/projects/_project.erb b/actionpack/test/fixtures/projects/_project.erb new file mode 100644 index 0000000000..480c4c2af3 --- /dev/null +++ b/actionpack/test/fixtures/projects/_project.erb @@ -0,0 +1 @@ +<%= project.name %>
\ No newline at end of file diff --git a/actionpack/test/fixtures/replies/_reply.erb b/actionpack/test/fixtures/replies/_reply.erb new file mode 100644 index 0000000000..68baf548d8 --- /dev/null +++ b/actionpack/test/fixtures/replies/_reply.erb @@ -0,0 +1 @@ +<%= reply.content %>
\ No newline at end of file |