summaryrefslogtreecommitdiff
path: root/spec/support/fixture_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/fixture_helpers.rb')
-rw-r--r--spec/support/fixture_helpers.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/support/fixture_helpers.rb b/spec/support/fixture_helpers.rb
new file mode 100644
index 0000000..7b7b20a
--- /dev/null
+++ b/spec/support/fixture_helpers.rb
@@ -0,0 +1,7 @@
+module FixtureHelpers
+
+ def fixture(name, ext = '.txt')
+ File.read(File.join(File.dirname(__FILE__), '..', 'fixtures', name.to_s + ext))
+ end
+
+end