11 lines
175 B
Ruby
11 lines
175 B
Ruby
|
module AsciiIo
|
||
|
module FixtureHelpers
|
||
|
extend self
|
||
|
|
||
|
def fixture_file(name, mime_type)
|
||
|
fixture_file_upload("spec/fixtures/#{name}", mime_type)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|