mirror of
https://github.com/sstent/Vagrant_Openstack.git
synced 2026-01-25 14:42:41 +00:00
8 lines
152 B
Ruby
8 lines
152 B
Ruby
module FixtureHelpers
|
|
|
|
def fixture(name, ext = '.txt')
|
|
File.read(File.join(File.dirname(__FILE__), '..', 'fixtures', name.to_s + ext))
|
|
end
|
|
|
|
end
|