mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 09:40:13 +01:00
9 lines
323 B
Ruby
9 lines
323 B
Ruby
|
|
$:.unshift File.join(File.dirname(__FILE__), '..', '..', 'lib')
|
||
|
|
require 'spec/story'
|
||
|
|
|
||
|
|
# won't have to do this once plain_text_story_runner is moved into the library
|
||
|
|
# require File.join(File.dirname(__FILE__), "plain_text_story_runner")
|
||
|
|
|
||
|
|
Dir[File.join(File.dirname(__FILE__), "steps/*.rb")].each do |file|
|
||
|
|
require file
|
||
|
|
end
|