aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/developers.yml
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/fixtures/developers.yml')
-rw-r--r--actionpack/test/fixtures/developers.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/developers.yml b/actionpack/test/fixtures/developers.yml
new file mode 100644
index 0000000000..308bf75de2
--- /dev/null
+++ b/actionpack/test/fixtures/developers.yml
@@ -0,0 +1,21 @@
+david:
+ id: 1
+ name: David
+ salary: 80000
+
+jamis:
+ id: 2
+ name: Jamis
+ salary: 150000
+
+<% for digit in 3..10 %>
+dev_<%= digit %>:
+ id: <%= digit %>
+ name: fixture_<%= digit %>
+ salary: 100000
+<% end %>
+
+poor_jamis:
+ id: 11
+ name: Jamis
+ salary: 9000 \ No newline at end of file