I'm trying to get cucumber up and running with a config app I use in Rails.
The config app is used to set various config options in Rails, for example the site value for ActiveResource:
self.site = "http://#{App['domain']}#{App['path']}"
When I run "cucumber features", I can get an error
bad URI(absolute but no path): http:// (URI::InvalidURIError)
I'm assuming this is because cucumber is not populating that self.site field with values from the config gem before it runs. I've included the config gem in my test environment but have not had any luck.
Where should I go from here?
The original app config gem is located here:
http://github.com/stephencelis/app